sql/composer.json

45 lines
993 B
JSON
Raw 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"
],
2021-10-24 06:54:31 +02:00
"homepage": "https://amphp.org",
2018-06-26 13:14:24 +02:00
"license": "MIT",
"require": {
2020-10-11 04:37:06 +02:00
"php": ">=8",
"amphp/amp": "^3-dev"
2018-06-26 13:14:24 +02:00
},
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",
2020-10-11 04:37:06 +02:00
"amphp/phpunit-util": "^2-dev",
"phpunit/phpunit": "^9",
2021-10-24 06:54:31 +02:00
"psalm/phar": "^4.10"
2018-06-29 12:12:40 +02:00
},
2021-10-24 06:54:31 +02:00
"minimum-stability": "dev",
"prefer-stable": true,
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-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
}
}