-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 869 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 869 Bytes
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
{
"name": "k8s/api",
"description": "Kubernetes API models and services generated from the OpenAPI spec.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "Chad.Sikorra@gmail.com"
}
],
"require": {
"php": ">=7.2",
"k8s/core": "^1.0"
},
"require-dev": {
"k8s/api-generator": "~0.2",
"friendsofphp/php-cs-fixer": "^2.0",
"phpstan/phpstan": "^0.12"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"K8s\\Api\\": "src/K8s/Api"
}
},
"scripts": {
"cs-fix": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix src/ --rules=@PSR2"
],
"analyse": [
"phpstan analyse"
]
}
}