1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-26 20:15:02 +01:00
postgres/composer.json
2017-06-04 23:42:18 -05:00

45 lines
970 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"
},
"require-dev": {
"amphp/phpunit-util": "dev-master as 0.1",
"phpunit/phpunit": "^6",
"friendsofphp/php-cs-fixer": "^2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Amp\\Postgres\\": "lib"
},
"files": [
"lib/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\Postgres\\Test\\": "test"
}
}
}