mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "amphp/amp",
|
|
"homepage": "https://github.com/amphp/amp",
|
|
"description": "A non-blocking concurrency framework for PHP applications",
|
|
"keywords": [
|
|
"async",
|
|
"concurrency",
|
|
"future",
|
|
"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.4.0",
|
|
"fabpot/php-cs-fixer": "~1.9",
|
|
"satooshi/php-coveralls": "0.7.*@dev"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\": "lib/"
|
|
},
|
|
"files": ["lib/functions.php"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Test\\": "test/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.1.0-dev",
|
|
"dev-v1.0.x": "1.0.0-dev"
|
|
}
|
|
}
|
|
}
|