Query/composer.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2012-07-17 14:45:52 -04:00
{
"name":"aviat/query",
2012-07-17 14:45:52 -04:00
"type":"library",
"description":"Database Query Builder and Abstraction layer",
"keywords":[
"database",
"query builder",
2014-03-31 16:01:58 -04:00
"codeigniter",
"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
},
"require-dev": {
"consolidation/robo": "1.0.0-RC2",
"humbug/humbug": "1.0.0-alpha2",
"monolog/monolog": "^1.21",
"nikic/php-parser": "v3.0.0alpha1",
"pdepend/pdepend": "^2.2",
"phploc/phploc": "^3.0",
"phpmd/phpmd": "^2.4",
"phpunit/phpunit": "^5.5",
"sebastian/phpcpd": "^2.0",
2016-10-12 20:32:23 -04:00
"simpletest/simpletest": "^1.1",
"squizlabs/php_codesniffer": "^3.0.0@RC",
2016-10-12 20:32:23 -04:00
"phpdocumentor/phpdocumentor": "2.*"
},
"autoload": {
"psr-4": {
"Query\\": "src/Query"
},
"files": ["src/common.php"]
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",
2017-03-01 16:07:31 -05:00
"test": "vendor/bin/phpunit"
}
2017-03-01 16:10:18 -05:00
}