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

33 lines
776 B
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",
"require": {
2017-06-15 19:02:50 +02:00
"amphp/amp": "^2",
"amphp/byte-stream": "^1"
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",
2017-06-15 19:02:50 +02:00
"friendsofphp/php-cs-fixer": "^2.3",
2017-03-05 18:08:34 +01:00
"kelunik/fqn-check": "^0.1.3"
},
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"
2015-04-22 16:13:27 +02:00
}
],
"autoload": {
"psr-4": {
"Amp\\Process\\": "lib"
},
"files": ["lib/functions.php"]
2015-04-22 16:13:27 +02:00
}
2017-03-05 18:08:34 +01:00
}