-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "k8s/api-generator",
"description": "Generates Kubernetes API objects from the OpenAPI spec.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "Chad.Sikorra@gmail.com"
}
],
"keywords": [
"k8s",
"kubernetes"
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^2.0",
"k8s/core": "^1.0",
"nette/php-generator": "3.5.2",
"symfony/console": "^5.1",
"symfony/filesystem": "^5.1",
"symfony/http-client": "^5.1",
"symfony/process": "^5.1",
"zircote/swagger-php": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12"
},
"config": {
"sort-packages": true
},
"bin": ["bin/k8s-api"],
"autoload": {
"psr-4": {
"K8s\\ApiGenerator\\": "src/K8s/ApiGenerator"
}
},
"scripts": {
"cs-fix": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix src/ --rules=@PSR2"
],
"analyse": [
"phpstan analyse"
]
}
}