1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/composer.json
Douglas G.R cf3e13a595 Throws a RuntimeException if php-uv or libevent is not loaded.
Using UvReactor or LibeventReactor directly (instead of Amp\getReactor)
doesn't check if php-uv/libevent is loaded and dies with a 'Call to undefined
function' message.
2015-01-06 00:01:07 -02:00

52 lines
1.2 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",
"libevent",
"libuv"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net",
"role": "Creator / Lead Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"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).",
"pecl/libevent": "Extension for libevent backends (high performance use cases)."
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/amphp/amp.git"
}
]
}