mirror of
https://github.com/danog/sql.git
synced 2024-11-26 20:15:08 +01:00
45 lines
984 B
JSON
45 lines
984 B
JSON
{
|
|
"name": "amphp/sql",
|
|
"description": "Asynchronous SQL client for Amp.",
|
|
"keywords": [
|
|
"database",
|
|
"db",
|
|
"sql",
|
|
"asynchronous",
|
|
"async"
|
|
],
|
|
"homepage": "https://amphp.org",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"amphp/amp": "^3"
|
|
},
|
|
"require-dev": {
|
|
"amphp/php-cs-fixer-config": "^2-dev",
|
|
"amphp/phpunit-util": "^3",
|
|
"phpunit/phpunit": "^9",
|
|
"psalm/phar": "^4.10"
|
|
},
|
|
"minimum-stability": "beta",
|
|
"prefer-stable": true,
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Sql\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Sql\\Test\\": "test"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs",
|
|
"@test"
|
|
],
|
|
"cs": "php-cs-fixer fix -v --diff --dry-run",
|
|
"cs-fix": "php-cs-fixer fix -v --diff",
|
|
"test": "phpunit --coverage-text"
|
|
}
|
|
}
|