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

56 lines
1.3 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",
"description": "Asynchronous process manager.",
2015-04-22 16:13:27 +02:00
"require": {
"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
},
"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-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": {
"Amp\\Process\\": "lib"
},
2017-11-25 02:11:21 +01:00
"files": ["lib/constants.php"]
},
2017-12-03 04:16:52 +01:00
"autoload-dev": {
"psr-4": {
"Amp\\Process\\Test\\": "test"
}
},
"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
}