mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"name": "amphp/amp",
|
|
"homepage": "https://github.com/amphp/amp",
|
|
"description": "A non-blocking concurrency framework for PHP applications",
|
|
"keywords": [
|
|
"async",
|
|
"asynchronous",
|
|
"concurrency",
|
|
"promise",
|
|
"awaitable",
|
|
"future",
|
|
"non-blocking",
|
|
"event"
|
|
],
|
|
"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": "dev-master",
|
|
"react/promise": "^2",
|
|
"friendsofphp/php-cs-fixer": "~1.9",
|
|
"phpunit/phpunit": "^6.0.9"
|
|
},
|
|
"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"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0.x-dev"
|
|
}
|
|
}
|
|
}
|