mirror of
https://github.com/danog/postgres.git
synced 2024-11-30 04:29:12 +01:00
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "amphp/postgres",
|
|
"description": "Asynchronous PostgreSQL client for Amp.",
|
|
"keywords": [
|
|
"database",
|
|
"db",
|
|
"postgresql",
|
|
"postgre",
|
|
"pgsql",
|
|
"asynchronous",
|
|
"async"
|
|
],
|
|
"homepage": "http://amphp.org",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8",
|
|
"amphp/amp": "^3-dev",
|
|
"amphp/sql": "^2-dev",
|
|
"amphp/sql-common": "^2-dev"
|
|
},
|
|
"require-dev": {
|
|
"ext-pgsql": "*",
|
|
"ext-pq": "*",
|
|
"amphp/phpunit-util": "^2-dev",
|
|
"phpunit/phpunit": "^9",
|
|
"amphp/php-cs-fixer-config": "dev-master",
|
|
"psalm/phar": "^3.11@dev"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Postgres\\": "src"
|
|
},
|
|
"files": [
|
|
"src/functions.php",
|
|
"src/Internal/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Postgres\\Test\\": "test"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@cs",
|
|
"@test"
|
|
],
|
|
"cs": "php-cs-fixer fix -v --diff --dry-run",
|
|
"cs-fix": "php-cs-fixer fix -v --diff",
|
|
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
|
|
}
|
|
}
|