-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 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
{
"name": "helppc/supervisor-bundle",
"type": "symfony-bundle",
"homepage": "https://gitlab.com/helppc/supervisor-bundle",
"license": "MIT",
"description": "Manage your supervisor instance in your Symfony5 application.",
"keywords": [
"supervisor",
"supervisord",
"supervisorctl",
"rpc",
"api"
],
"authors": [
{
"name": "Tomáš Kulhánek",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8",
"supervisorphp/supervisor": "^4.0",
"symfony/framework-bundle": "^4.4 || ^5.1",
"symfony/yaml": "^4.4 || ^5.1",
"symfony/templating": "^4.4 || ^5.1",
"psr/http-message": "^1.0",
"php-http/httplug": "^2.0",
"php-http/client-common": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0",
"symfony/http-foundation": "^4.4 || ^5.1",
"symfony/translation": "^4.4 || ^5.1",
"nyholm/psr7": "^1.3",
"symfony/http-client": "^4.4 || ^5.1"
},
"suggest": {
"php-http/httplug-bundle": "to provide required HTTP client with ease."
},
"autoload": {
"psr-4": {
"HelpPC\\Bundle\\SupervisorBundle\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpstan/phpstan": "^0.12.48"
}
}