1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/composer.json
2021-04-05 21:28:42 +02:00

89 lines
2.1 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": "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",
"ext-fiber": "*",
"revolt/event-loop": "^1",
"revolt/future": "^1"
},
"require-dev": {
"ext-json": "*",
"amphp/phpunit-util": "dev-v2-revolt",
"amphp/php-cs-fixer-config": "dev-master",
"phpunit/phpunit": "^9",
"psalm/phar": "^4.7",
"jetbrains/phpstorm-stubs": "^2019.3"
},
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "git@github.com:revolt-php/event-loop.git"
},
{
"type": "vcs",
"url": "git@github.com:revolt-php/future.git"
}
],
"autoload": {
"psr-4": {
"Amp\\": "lib"
},
"files": [
"lib/Internal/functions.php",
"lib/Pipeline/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.x-dev"
}
},
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
}
}