forked from php-pm/php-pm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.1 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
{
"name": "digit-soft/re-action-pm",
"description": "PHP-PM is a process manager, supercharger and load balancer for PHP applications.",
"license": "MIT",
"require": {
"php": ">=7.0",
"ext-pcntl":"*",
"symfony/console": "^4.0",
"symfony/debug": "^4.0",
"symfony/process": "^4.0",
"react/event-loop": "^0.5",
"react/stream": "^0.7.1",
"react/http": "^0.8",
"react/socket": "^0.8.6",
"react/child-process": "^0.5",
"monolog/monolog": "^1.3",
"paragonie/random_compat": "^2.0",
"psr/http-server-handler": "^1.0",
"ringcentral/psr7": "^1.2"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Reaction\\PM\\": "src",
"Reaction\\PM\\Tests\\": "tests"
},
"files": [
"src/functions.php"
]
},
"suggest": {
"php-pm/httpkernel-adapter": "HttpKernel adapter for Symfony and Laravel frameworks"
},
"bin": [
"bin/pm"
]
}