1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 09:27:46 +01:00
amp/composer.json
2021-12-02 18:20:10 +01:00

75 lines
1.8 KiB
JSON

{
"name": "amphp/amp",
"homepage": "https://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": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
},
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
}
],
"require": {
"php": ">=8",
"revolt/event-loop": "v1.x-dev"
},
"require-dev": {
"ext-json": "*",
"amphp/phpunit-util": "v2.x-dev",
"amphp/php-cs-fixer-config": "dev-master",
"phpunit/phpunit": "^9",
"psalm/phar": "^4.7",
"jetbrains/phpstorm-stubs": "^2019.3"
},
"autoload": {
"psr-4": {
"Amp\\": "src"
},
"files": [
"src/functions.php",
"src/Future/functions.php",
"src/Internal/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\": "test"
}
},
"support": {
"issues": "https://github.com/amphp/amp/issues"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
}
}