mirror of
https://github.com/danog/postgres.git
synced 2024-11-26 20:15:02 +01:00
42 lines
834 B
JSON
42 lines
834 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.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^5"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Postgres\\": "lib"
|
|
},
|
|
"files": [
|
|
"lib/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Postgres\\Test\\": "test"
|
|
}
|
|
}
|
|
}
|