sql/composer.json

47 lines
976 B
JSON
Raw Permalink Normal View History

2018-06-26 13:14:24 +02:00
{
"name": "amphp/sql",
"description": "Asynchronous SQL client for Amp.",
"keywords": [
"database",
"db",
"sql",
"asynchronous",
"async"
],
"homepage": "http://amphp.org",
"license": "MIT",
"require": {
2018-09-13 20:51:10 +02:00
"php": ">=7",
2018-06-26 13:14:24 +02:00
"amphp/amp": "^2"
},
2018-06-29 12:12:40 +02:00
"require-dev": {
2018-06-29 19:24:35 +02:00
"amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1",
"phpunit/phpunit": "^6"
2018-06-29 12:12:40 +02:00
},
2018-06-26 13:14:24 +02:00
"autoload": {
"psr-4": {
"Amp\\Sql\\": "src"
}
},
2018-06-29 19:24:35 +02:00
"autoload-dev": {
"psr-4": {
"Amp\\Sql\\Test\\": "test"
}
},
2018-06-26 13:14:24 +02:00
"config": {
"platform": {
"php": "7.0.0"
}
2018-06-29 12:12:40 +02:00
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
2018-10-13 16:21:12 +02:00
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --coverage-text"
2018-06-26 13:14:24 +02:00
}
}