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",
|
2017-09-17 17:58:05 +02:00
|
|
|
"description": "Asynchronous process manager.",
|
2015-04-22 16:13:27 +02:00
|
|
|
"require": {
|
2017-09-17 17:58:05 +02:00
|
|
|
"php": ">=7",
|
2017-06-15 19:02:50 +02:00
|
|
|
"amphp/amp": "^2",
|
2018-10-15 16:55:15 +02:00
|
|
|
"amphp/byte-stream": "^1.4"
|
2015-04-22 16:13:27 +02:00
|
|
|
},
|
2015-09-11 16:39:38 +02:00
|
|
|
"require-dev": {
|
2017-06-16 05:53:33 +02:00
|
|
|
"phpunit/phpunit": "^6",
|
|
|
|
"amphp/phpunit-util": "^1",
|
2018-10-15 06:16:09 +02:00
|
|
|
"amphp/php-cs-fixer-config": "dev-master"
|
2015-09-11 16:39:38 +02:00
|
|
|
},
|
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": {
|
|
|
|
"Amp\\Process\\": "lib"
|
2017-09-14 19:34:18 +02:00
|
|
|
},
|
2017-11-25 02:11:21 +01:00
|
|
|
"files": ["lib/constants.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"
|
|
|
|
}
|
|
|
|
},
|
2017-12-03 04:14:26 +01:00
|
|
|
"config": {
|
|
|
|
"platform": {
|
|
|
|
"php": "7.0.0"
|
|
|
|
}
|
2018-10-15 06:16:09 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"check": [
|
|
|
|
"@cs",
|
|
|
|
"@test"
|
|
|
|
],
|
|
|
|
"cs": "php-cs-fixer fix -v --diff --dry-run",
|
|
|
|
"cs-fix": "php-cs-fixer fix -v --diff",
|
|
|
|
"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
|
|
|
}
|