forked from php-pm/php-pm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.28 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
{
"name": "php-pm/php-pm",
"license": "MIT",
"require": {
"php": ">=5.6.0",
"ext-pcntl":"*",
"symfony/console": "^2.6|^3.0",
"symfony/debug": "^2.6|^3.0",
"symfony/process": "^2.6|^3.0",
"react/event-loop": "^0.4",
"react/stream": "^0.7.1",
"react/http": "^0.8",
"react/socket": "^0.8.6",
"react/child-process": "^0.5",
"mkraemer/react-pcntl": "^2.0|^3.0",
"monolog/monolog": "^1.3",
"paragonie/random_compat": "^2.0",
"http-interop/http-middleware": "^0.5",
"ringcentral/psr7": "^1.2"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"PHPPM\\": "src",
"PHPPM\\Tests\\": "tests"
},
"files": [
"src/functions.php"
]
},
"suggest": {
"php-pm/httpkernel-adapter": "HttpKernel adapter for Symfony and Laravel frameworks",
"ext-libevent": "Allows for use of a more performant event-loop implementation.",
"ext-libev": "Allows for use of a more performant event-loop implementation.",
"ext-event": "Allows for use of a more performant event-loop implementation."
},
"bin": ["bin/ppm"]
}