-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
50 lines (49 loc) · 1.26 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "alchemy/task-manager",
"type": "library",
"description": "A manager for running parallel PHP processes command line.",
"keywords": ["process", "cli", "parallel"],
"license": "MIT",
"authors": [
{
"name": "Romain Neutron",
"email": "[email protected]",
"homepage": "http://www.lickmychip.com/"
},
{
"name": "Phraseanet Team",
"email": "[email protected]",
"homepage": "http://www.phraseanet.com/"
}
],
"require": {
"php": ">=5.3.3",
"ext-zmq": "*",
"neutron/process-manager": "2.0.x-dev@dev",
"neutron/signal-handler": "~1.0",
"symfony/event-dispatcher": "~2.0",
"symfony/process": "~2.4"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/romainneutron/ProcessManager"
}
],
"require-dev": {
"monolog/monolog": "~1.0",
"phpunit/phpunit": "~3.7|^4.0|^5.0",
"symfony/console": "~2.3",
"symfony/finder": "~2.1"
},
"autoload": {
"psr-0": {
"Alchemy": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}