mirror of
https://github.com/danog/postgres.git
synced 2024-11-26 20:15:02 +01:00
49 lines
998 B
JSON
49 lines
998 B
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": {
|
|
"amphp/amp": "^2"
|
|
},
|
|
"require-dev": {
|
|
"amphp/phpunit-util": "^1",
|
|
"phpunit/phpunit": "^6",
|
|
"friendsofphp/php-cs-fixer": "^2.3",
|
|
"phpstan/phpstan": "^0.9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Postgres\\": "lib"
|
|
},
|
|
"files": [
|
|
"lib/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Postgres\\Test\\": "test"
|
|
}
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.0.0"
|
|
}
|
|
}
|
|
}
|