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",
|
2021-12-13 23:30:02 +01:00
|
|
|
"amphp/byte-stream": "^2",
|
|
|
|
"amphp/sync": "^2",
|
|
|
|
"revolt/event-loop": "^0.1.1"
|
2015-04-22 16:13:27 +02:00
|
|
|
},
|
2015-09-11 16:39:38 +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",
|
2021-12-13 23:30:02 +01:00
|
|
|
"amphp/php-cs-fixer-config": "dev-master",
|
|
|
|
"psalm/phar": "^4.15",
|
|
|
|
"jetbrains/phpstorm-attributes": "^1.0"
|
2015-09-11 16:39:38 +02:00
|
|
|
},
|
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"
|
2017-01-11 19:24:02 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Aaron Piotrowski",
|
|
|
|
"email": "aaron@trowski.com"
|
2017-09-17 17:58:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Niklas Keller",
|
|
|
|
"email": "me@kelunik.com"
|
2015-04-22 16:13:27 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"autoload": {
|
2017-01-11 19:24:02 +01:00
|
|
|
"psr-4": {
|
2021-12-11 00:53:24 +01:00
|
|
|
"Amp\\Process\\": "src"
|
2017-09-14 19:34:18 +02:00
|
|
|
},
|
2021-12-11 00:53:24 +01:00
|
|
|
"files": ["src/functions.php"]
|
2017-12-03 04:14:26 +01:00
|
|
|
},
|
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"
|
|
|
|
],
|
2019-02-26 17:33:03 +01:00
|
|
|
"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
|
|
|
}
|