-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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
{
"name": "thesgroup/docker-container-manager",
"description": "Docker Container Manager CLI",
"type": "project",
"license": "GPL-3.0-only",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "~7.4||~8.1||~8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"symfony/console": "^5.4",
"symfony/process": "^5.4",
"symfony/serializer": "^5.4",
"stecman/symfony-console-completion": "^0.11.0",
"symfony/filesystem": "^5.4",
"symfony/http-client": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/config": "^5.4",
"symfony/finder": "^5.4",
"symfony/yaml": "^5.4"
},
"authors": [
{
"name": "Alexander Lukyanov",
"email": "support@sashas.org"
}
],
"autoload": {
"files": ["constants.php"],
"psr-4": {
"Dcm\\Cli\\": "src/"
}
},
"bin": [
"bin/dcm"
],
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.5"
}
}