forked from php-pm/php-pm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.35 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.35 KB
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
{
"name": "php-pm/php-pm",
"description": "PHP-PM is a process manager, supercharger and load balancer for PHP applications. | This is a fork that we will try to keep up to date with the upstream.",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0 ",
"ext-pcntl": "*",
"symfony/console": "^4|^5|^6",
"symfony/error-handler": "^4.4|^5|^6",
"symfony/process": "^4|^5|^6",
"react/event-loop": "^1.0",
"react/http": "^1.0",
"react/stream": "^1.0",
"react/socket": "^1.0",
"react/child-process": "^0.6",
"psr/http-server-handler": "^1.0",
"ringcentral/psr7": "^1.2",
"psr/http-message": "^1.0.1",
"react/promise": "^2.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^2.16.7",
"phpstan/phpstan": "^0.12.58",
"drew/debug-statements-fixers": "^0.5.0"
},
"autoload": {
"psr-4": {
"PHPPM\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"PHPPM\\Tests\\": "tests"
}
},
"suggest": {
"php-pm/httpkernel-adapter": "HttpKernel adapter for Symfony and Laravel frameworks"
},
"bin": [
"bin/ppm"
]
}