1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-30 04:29:12 +01:00
postgres/composer.json
Aaron Piotrowski caf829a48c Initial commit
2016-09-14 09:27:39 -05:00

44 lines
944 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": "dev-master as 2.0",
"async-interop/event-loop-implementation": "^0.3"
},
"require-dev": {
"amphp/loop": "dev-master",
"phpunit/phpunit": "^5.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Amp\\Postgres\\": "lib"
},
"files": [
"lib/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Postgres\\Test\\": "test"
}
}
}