mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
78 lines
1.8 KiB
JSON
78 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"
|
|
},
|
|
"require-dev": {
|
|
"amphp/phpunit-util": "^1",
|
|
"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.0.0"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
|
|
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
|
|
}
|
|
}
|