1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00
amp/composer.json

46 lines
993 B
JSON
Raw Normal View History

2013-08-05 22:05:08 +02:00
{
2014-09-23 04:38:32 +02:00
"name": "amphp/amp",
"homepage": "https://github.com/amphp/amp",
"description": "A non-blocking concurrency framework for PHP applications",
2014-07-22 17:56:44 +02:00
"keywords": [
2014-09-23 04:38:32 +02:00
"async",
"concurrency",
"future",
"promise",
2014-07-22 17:56:44 +02:00
"non-blocking",
2015-05-12 21:03:24 +02:00
"event"
2014-07-22 17:56:44 +02:00
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net",
"role": "Creator / Lead Developer"
}
],
"require": {
2015-05-04 18:47:10 +02:00
"php": ">=5.5"
2014-07-22 17:56:44 +02:00
},
"require-dev": {
2015-07-19 19:29:25 +02:00
"phpunit/phpunit": "~4.4.0",
"fabpot/php-cs-fixer": "~1.9",
2015-07-22 17:42:16 +02:00
"satooshi/php-coveralls": "0.7.*@dev"
},
2014-07-22 17:56:44 +02:00
"autoload": {
"psr-4": {
2014-09-23 04:38:32 +02:00
"Amp\\": "lib/"
2014-08-02 08:10:05 +02:00
},
"files": ["lib/functions.php"]
2014-07-22 17:56:44 +02:00
},
2014-09-23 04:38:32 +02:00
"autoload-dev": {
"psr-4": {
"Amp\\Test\\": "test/"
}
},
2015-05-12 21:18:28 +02:00
"extra": {
"branch-alias": {
"master": "1.0.0-dev"
2015-05-12 21:18:28 +02:00
}
}
2013-08-05 22:05:08 +02:00
}