sql/composer.json

43 lines
960 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"
],
"homepage": "http://amphp.org",
"license": "MIT",
"require": {
2020-05-22 17:17:54 +02:00
"php": ">=7.1",
2020-05-21 17:48:42 +02:00
"amphp/amp": "dev-streams as 2.6"
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-05-23 22:44:01 +02:00
"amphp/phpunit-util": "^1.1",
"phpunit/phpunit": "^9 | ^8 | ^7",
"vimeo/psalm": "^3.11@dev"
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-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
}
}