1
0
mirror of https://github.com/danog/process.git synced 2024-11-30 04:39:04 +01:00
process/composer.json

62 lines
1.5 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",
2018-07-11 19:41:32 +02:00
"amphp/amp": "dev-ext-task",
"amphp/byte-stream": "dev-ext-task"
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-07-11 19:41:32 +02:00
"friendsofphp/php-cs-fixer": "^2.3",
"concurrent-php/task": "1.0"
},
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": {
2018-07-11 19:41:32 +02:00
"php": "7.2.0"
}
2018-07-11 19:41:32 +02:00
},
"repositories": [
{
"type": "package",
"package": {
"name": "concurrent-php/task",
"version": "1.0",
"source": {
"url": "https://github.com/concurrent-php/task",
"type": "git",
"reference": "origin/master"
}
}
}
]
2017-03-05 18:08:34 +01:00
}