mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
b2429292c7
We have Awaitable now and no longer need promises. Emitter is now compatible with \Iterator. Removed many things, because they're no longer needed.
80 lines
1.8 KiB
JSON
80 lines
1.8 KiB
JSON
{
|
|
"name": "amphp/amp",
|
|
"homepage": "http://amphp.org/amp",
|
|
"description": "A non-blocking concurrency framework for PHP applications.",
|
|
"keywords": [
|
|
"async",
|
|
"asynchronous",
|
|
"concurrency",
|
|
"promise",
|
|
"awaitable",
|
|
"future",
|
|
"non-blocking",
|
|
"event",
|
|
"event-loop"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Lowrey",
|
|
"email": "rdlowrey@php.net"
|
|
},
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
},
|
|
{
|
|
"name": "Bob Weinand",
|
|
"email": "bobwei9@hotmail.com"
|
|
},
|
|
{
|
|
"name": "Niklas Keller",
|
|
"email": "me@kelunik.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7",
|
|
"ext-async": "*",
|
|
"concurrent-php/async-api": "dev-master"
|
|
},
|
|
"require-dev": {
|
|
"amphp/phpunit-util": "dev-ext-task",
|
|
"react/promise": "^2",
|
|
"friendsofphp/php-cs-fixer": "^2.3",
|
|
"phpunit/phpunit": "^6.0.9",
|
|
"phpstan/phpstan": "^0.8.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\": "lib"
|
|
},
|
|
"files": [
|
|
"lib/functions.php",
|
|
"lib/Internal/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Test\\": "test"
|
|
}
|
|
},
|
|
"support": {
|
|
"issues": "https://github.com/amphp/amp/issues",
|
|
"irc": "irc://irc.freenode.org/amphp"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0.x-dev"
|
|
}
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.2.0"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
|
|
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
|
|
}
|
|
}
|