1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/composer.json
2015-08-18 13:41:13 +02:00

47 lines
1010 B
JSON

{
"name": "amphp/amp",
"homepage": "https://github.com/amphp/amp",
"description": "A non-blocking concurrency framework for PHP applications",
"keywords": [
"async",
"concurrency",
"promise",
"non-blocking",
"event"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net",
"role": "Creator / Lead Developer"
}
],
"require": {
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"fabpot/php-cs-fixer": "~1.9"
},
"autoload": {
"psr-4": {
"Amp\\": "lib/"
},
"files": ["lib/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\Test\\": "test/"
}
},
"support": {
"issues": "https://github.com/amphp/amp/issues"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}