-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.23 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
{
"name": "php-pm/php-pm",
"description": "PHP-PM is a process manager, supercharger and load balancer for PHP applications.",
"license": "MIT",
"require": {
"php": "^7.3 || ^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": "^3.0",
"phpstan/phpstan": "^1.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"
]
}