1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00
amp/composer.json

48 lines
999 B
JSON
Raw Normal View History

2013-08-05 16:05:08 -04:00
{
2014-09-22 22:38:32 -04:00
"name": "amphp/amp",
"homepage": "https://github.com/amphp/amp",
"description": "A non-blocking concurrency framework for PHP applications",
2014-07-22 11:56:44 -04:00
"keywords": [
2014-09-22 22:38:32 -04:00
"async",
"concurrency",
"future",
"promise",
2014-07-22 11:56:44 -04:00
"non-blocking",
"libevent",
2014-09-22 22:38:32 -04:00
"libuv"
2014-07-22 11:56:44 -04:00
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net",
"role": "Creator / Lead Developer"
}
],
"require": {
2014-10-20 09:45:49 -04:00
"php": ">=5.4.0"
2014-07-22 11:56:44 -04:00
},
"autoload": {
"psr-4": {
2014-09-22 22:38:32 -04:00
"Amp\\": "lib/"
2014-08-02 02:10:05 -04:00
},
"files": ["lib/functions.php"]
2014-07-22 11:56:44 -04:00
},
2014-09-22 22:38:32 -04:00
"autoload-dev": {
"psr-4": {
"Amp\\Test\\": "test/"
}
},
2014-09-23 00:27:48 -04:00
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
2014-07-22 11:56:44 -04:00
},
"repositories": [
{
"type": "vcs",
2014-09-22 22:38:32 -04:00
"url": "https://github.com/amphp/amp.git"
2014-07-22 11:56:44 -04:00
}
]
2013-08-05 16:05:08 -04:00
}