mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
45 lines
974 B
JSON
45 lines
974 B
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",
|
|
"libevent",
|
|
"libuv"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Lowrey",
|
|
"email": "rdlowrey@php.net",
|
|
"role": "Creator / Lead Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0.0@dev"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\": "lib/"
|
|
},
|
|
"files": ["lib/functions.php"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Test\\": "test/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.0.x-dev"
|
|
}
|
|
},
|
|
"suggest": {
|
|
"php-uv": "Extension for libuv backends (high performance use cases)."
|
|
}
|
|
}
|