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

62 lines
1.5 KiB
JSON

{
"name": "amphp/process",
"homepage": "https://github.com/amphp/process",
"description": "Asynchronous process manager.",
"require": {
"php": ">=7",
"amphp/amp": "dev-ext-task",
"amphp/byte-stream": "dev-ext-task"
},
"require-dev": {
"phpunit/phpunit": "^6",
"amphp/phpunit-util": "^1",
"friendsofphp/php-cs-fixer": "^2.3",
"concurrent-php/task": "1.0"
},
"license": "MIT",
"authors": [
{
"name": "Bob Weinand",
"email": "bobwei9@hotmail.com"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"autoload": {
"psr-4": {
"Amp\\Process\\": "lib"
},
"files": ["lib/constants.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\Process\\Test\\": "test"
}
},
"config": {
"platform": {
"php": "7.2.0"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "concurrent-php/task",
"version": "1.0",
"source": {
"url": "https://github.com/concurrent-php/task",
"type": "git",
"reference": "origin/master"
}
}
}
]
}