60 lines
1.3 KiB
JSON
60 lines
1.3 KiB
JSON
{
|
|
"name":"aviat/query",
|
|
"type":"library",
|
|
"description":"Database Query Builder and Abstraction layer",
|
|
"keywords":[
|
|
"database",
|
|
"query builder",
|
|
"codeigniter",
|
|
"mysql",
|
|
"firebird",
|
|
"sqlite",
|
|
"postgres",
|
|
"pdo"
|
|
],
|
|
"homepage":"https://git.timshomepage.net/aviat/Query",
|
|
"license":"MIT",
|
|
"authors": [{
|
|
"name": "Timothy J. Warren",
|
|
"email": "tim@timshomepage.net",
|
|
"homepage": "https://timshomepage.net",
|
|
"role": "Developer"
|
|
}],
|
|
"require": {
|
|
"php": "^7.0"
|
|
},
|
|
"require-dev": {
|
|
"consolidation/robo": "^1.0.0",
|
|
"infection/infection": "^0.7.0",
|
|
"monolog/monolog": "^1.21",
|
|
"pdepend/pdepend": "^2.5",
|
|
"phploc/phploc": "^4.0",
|
|
"phpmd/phpmd": "^2.4",
|
|
"phpstan/phpstan": "^0.9.1",
|
|
"phpunit/phpunit": "^6.5",
|
|
"sebastian/phpcpd": "^2.0",
|
|
"simpletest/simpletest": "^1.1",
|
|
"squizlabs/php_codesniffer": "^3.0.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Query\\": "src"
|
|
},
|
|
"files": ["src/common.php"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Query\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"coverage": "phpdbg -qrr -- vendor/bin/phpunit -c build",
|
|
"phpstan": "phpstan analyse -l 3 -c phpstan.neon src tests",
|
|
"test": "phpunit -c build --no-coverage"
|
|
},
|
|
"scripts-descriptions": {
|
|
"coverage": "Generate test coverage report",
|
|
"test": "Run unit tests"
|
|
}
|
|
}
|