-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.02 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.02 KB
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": "kubernetes/php-client",
"description": "Full Kubernetes API client",
"license": "MIT",
"keywords": [
"kubernetes",
"docker",
"api",
"client"
],
"authors": [
{
"name": "Allan Sun",
"email": "allan.sun@bricre.com"
}
],
"require": {
"php": ">=7.2",
"kubernetes/php-runtime": "^1"
},
"require-dev": {
"phpunit/phpunit": "^7|^8|^9",
"allansun/openapi-parser": "^1",
"zendframework/zend-code": "3.3.*",
"symfony/console": "^4|^5",
"mattketmo/camel": "^1.1",
"symfony/filesystem": "^4|^5",
"cpliakas/git-wrapper": "^2.0",
"symfony/monolog-bridge": "^4|^5",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Kubernetes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kubernetes\\Test\\": "test",
"CodeGenerator\\": "dev_src",
"Kubernetes\\": "src"
}
},
"archive": {
"exclude": [
"dev_src",
"openapi",
"bin"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}