mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
43 lines
964 B
JSON
43 lines
964 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.4.0",
|
|
"fabpot/php-cs-fixer": "~1.9",
|
|
"satooshi/php-coveralls": "dev-master"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\": "lib/"
|
|
},
|
|
"files": ["lib/functions.php"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Test\\": "test/"
|
|
}
|
|
},
|
|
"support": {
|
|
"issues": "https://github.com/amphp/amp/issues"
|
|
}
|
|
}
|