-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 958 Bytes
/
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
{
"name": "mep-agency/web-toolkit-k8s-cli",
"description": "A CLI tool to deploy and manage MEP Web Toolkit projects on a K8s cluster",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marco Lipparini",
"email": "[email protected]"
},
{
"name": "MEP Development Team",
"homepage": "https://www.mep.it"
}
],
"require": {
"php": "^8.1",
"ext-yaml": "*",
"renoki-co/php-k8s": "^3.1",
"symfony/config": "5.4.*",
"symfony/console": "5.4.*",
"symfony/dependency-injection": "5.4.*",
"symfony/process": "5.4.*",
"renoki-co/php-helm": "^1.6",
"symfony/finder": "5.4.*"
},
"autoload": {
"psr-4": {
"Mep\\MepWebToolkitK8sCli\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.1-dev"
}
}
}