2012-07-17 14:45:52 -04:00
|
|
|
{
|
2016-08-04 14:30:45 -04:00
|
|
|
"name":"aviat/query",
|
2012-07-17 14:45:52 -04:00
|
|
|
"type":"library",
|
|
|
|
"description":"Database Query Builder and Abstraction layer",
|
2012-09-25 13:16:36 -04:00
|
|
|
"keywords":[
|
|
|
|
"database",
|
|
|
|
"query builder",
|
2014-03-31 16:01:58 -04:00
|
|
|
"codeigniter",
|
2012-09-25 13:16:36 -04:00
|
|
|
"mysql",
|
|
|
|
"firebird",
|
|
|
|
"sqlite",
|
|
|
|
"postgres",
|
|
|
|
"pdo"
|
|
|
|
],
|
2017-03-01 16:07:31 -05:00
|
|
|
"homepage":"https://git.timshomepage.net/aviat/Query",
|
2017-03-01 16:10:18 -05:00
|
|
|
"license":"MIT",
|
2012-08-02 11:59:11 -04:00
|
|
|
"authors": [{
|
|
|
|
"name": "Timothy J. Warren",
|
|
|
|
"email": "tim@timshomepage.net",
|
|
|
|
"homepage": "https://timshomepage.net",
|
|
|
|
"role": "Developer"
|
|
|
|
}],
|
2012-07-17 14:45:52 -04:00
|
|
|
"require": {
|
2016-10-12 20:32:23 -04:00
|
|
|
"php": "^7.0"
|
2012-08-02 11:59:11 -04:00
|
|
|
},
|
2016-09-07 13:06:28 -04:00
|
|
|
"require-dev": {
|
2018-01-19 10:43:27 -05:00
|
|
|
"consolidation/robo": "^1.0.0",
|
2018-01-19 10:53:40 -05:00
|
|
|
"infection/infection": "^0.7.0",
|
2016-09-07 13:06:28 -04:00
|
|
|
"monolog/monolog": "^1.21",
|
2018-01-19 10:43:27 -05:00
|
|
|
"pdepend/pdepend": "^2.5",
|
|
|
|
"phploc/phploc": "^4.0",
|
2016-09-07 13:06:28 -04:00
|
|
|
"phpmd/phpmd": "^2.4",
|
2018-01-19 15:47:34 -05:00
|
|
|
"phpstan/phpstan": "^0.9.1",
|
2018-01-19 16:48:52 -05:00
|
|
|
"phpunit/phpunit": "^6.5",
|
2016-09-07 13:06:28 -04:00
|
|
|
"sebastian/phpcpd": "^2.0",
|
2016-10-12 20:32:23 -04:00
|
|
|
"simpletest/simpletest": "^1.1",
|
2018-01-19 10:43:27 -05:00
|
|
|
"squizlabs/php_codesniffer": "^3.0.0"
|
2016-09-07 13:06:28 -04:00
|
|
|
},
|
2012-09-25 10:16:01 -04:00
|
|
|
"autoload": {
|
2016-09-07 13:06:28 -04:00
|
|
|
"psr-4": {
|
2018-01-19 15:47:34 -05:00
|
|
|
"Query\\": "src"
|
2016-09-07 13:06:28 -04:00
|
|
|
},
|
|
|
|
"files": ["src/common.php"]
|
2017-03-01 16:07:31 -05:00
|
|
|
},
|
2018-01-19 15:47:34 -05:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Query\\Tests\\": "tests"
|
|
|
|
}
|
|
|
|
},
|
2017-03-01 16:07:31 -05:00
|
|
|
"scripts": {
|
2017-03-01 16:10:18 -05:00
|
|
|
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build",
|
2018-01-19 13:43:19 -05:00
|
|
|
"phpstan": "phpstan analyse -l 3 -c phpstan.neon src tests",
|
2018-01-19 16:48:52 -05:00
|
|
|
"test": "phpunit -c build --no-coverage"
|
2018-01-19 10:43:27 -05:00
|
|
|
},
|
|
|
|
"scripts-descriptions": {
|
|
|
|
"coverage": "Generate test coverage report",
|
|
|
|
"test": "Run unit tests"
|
2012-09-25 10:16:01 -04:00
|
|
|
}
|
2018-01-19 10:43:27 -05:00
|
|
|
}
|