1
0
mirror of https://github.com/danog/process.git synced 2024-11-26 20:24:43 +01:00
process/composer.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2015-04-22 16:13:27 +02:00
{
2015-04-22 18:22:05 +02:00
"name": "amphp/process",
2015-04-22 16:13:27 +02:00
"homepage": "https://github.com/amphp/process",
2021-12-11 21:09:26 +01:00
"description": "A fiber-aware process manager based on Amp and Revolt.",
2015-04-22 16:13:27 +02:00
"require": {
2020-10-07 19:06:47 +02:00
"php": ">=8",
2021-12-11 21:09:26 +01:00
"amphp/amp": "^3",
"amphp/byte-stream": "^2",
"amphp/sync": "^2",
"revolt/event-loop": "^0.1.1"
2015-04-22 16:13:27 +02:00
},
"require-dev": {
2020-10-07 19:06:47 +02:00
"phpunit/phpunit": "^9",
2021-12-11 21:09:26 +01:00
"amphp/phpunit-util": "^3",
"amphp/php-cs-fixer-config": "dev-master",
"psalm/phar": "^4.15",
"jetbrains/phpstorm-attributes": "^1.0"
},
2021-03-27 07:34:45 +01:00
"prefer-stable": true,
2021-12-11 21:09:26 +01:00
"minimum-stability": "beta",
2015-04-22 16:13:27 +02:00
"license": "MIT",
"authors": [
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2015-04-22 16:13:27 +02:00
}
],
"autoload": {
"psr-4": {
2021-12-11 00:53:24 +01:00
"Amp\\Process\\": "src"
},
2021-12-11 00:53:24 +01:00
"files": ["src/functions.php"]
},
2017-12-03 04:16:52 +01:00
"autoload-dev": {
"psr-4": {
"Amp\\Process\\Test\\": "test"
}
},
2018-10-15 06:16:09 +02:00
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff",
2018-10-15 06:16:09 +02:00
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
2015-04-22 16:13:27 +02:00
}
2017-03-05 18:08:34 +01:00
}