1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/composer.json

64 lines
1.5 KiB
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",
2016-07-19 06:20:05 +02:00
"asynchronous",
2014-09-23 04:38:32 +02:00
"concurrency",
"promise",
2016-07-19 06:20:05 +02:00
"awaitable",
2016-05-21 16:44:52 +02:00
"future",
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"
2016-07-19 06:20:05 +02:00
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com",
"role": "v2.0 Developer"
2014-07-22 17:56:44 +02:00
}
],
"require": {
2016-08-11 21:35:58 +02:00
"php": ">=7",
"async-interop/promise": "^0.4",
"async-interop/event-loop": "^0.5",
"async-interop/event-loop-implementation": "^0.5"
2014-07-22 17:56:44 +02:00
},
"require-dev": {
2016-07-12 18:20:06 +02:00
"amphp/loop": "dev-master",
2017-01-07 15:53:55 +01:00
"async-interop/promise-test": "^0.4.1",
"friendsofphp/php-cs-fixer": "~1.9",
2017-01-07 18:31:25 +01:00
"humbug/humbug": "^1@dev",
"phpunit/phpunit": "^5.7"
},
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
},
2016-05-21 16:44:52 +02:00
"files": [
"lib/bootstrap.php",
2016-05-21 16:44:52 +02:00
"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-07-27 19:37:05 +02:00
"support": {
"issues": "https://github.com/amphp/amp/issues"
2015-08-18 13:41:13 +02:00
},
"extra": {
"branch-alias": {
2016-07-20 15:53:58 +02:00
"dev-master": "2.0.x-dev"
2015-08-18 13:41:13 +02:00
}
}
2013-08-05 22:05:08 +02:00
}