-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.27 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
50
51
52
53
{
"name": "helppc/supervisor-rest-bundle",
"type": "symfony-bundle",
"homepage": "https://gitlab.com/helppc/supervisor-rest-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",
"ext-curl": "*",
"ext-json": "*",
"jms/serializer-bundle": "^3.7",
"nelmio/api-doc-bundle": "^3.7",
"nyholm/psr7": "^1.3",
"supervisorphp/supervisor": "^4.0",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "^4.4 || ^5.1",
"symfony/http-client": "^4.4 || ^5.1",
"symfony/validator": "^4.4 || ^5.1",
"symfony/yaml": "^4.4 || ^5.1"
},
"suggest": {
"php-http/httplug-bundle": "to provide required HTTP client with ease."
},
"autoload": {
"psr-4": {
"HelpPC\\Bundle\\SupervisorRestBundle\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpstan/phpstan": "^0.12.48"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}