-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
74 lines (74 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "k8s/client",
"description": "A Kubernetes client for PHP.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "[email protected]"
}
],
"keywords": [
"k8s",
"kubernetes"
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"doctrine/annotations": "^1.0",
"k8s/api": "*",
"k8s/core": "^1.3",
"klkvsk/json-decode-stream": "^1.0",
"php-http/discovery": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/simple-cache": "^1.0",
"symfony/yaml": ">=3.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"k8s/http-symfony": "^1.0",
"k8s/ws-ratchet": "^1.0",
"mockery/mockery": "~1.3.0|~1.5.0",
"php-http/httplug": "^2.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.5|^9.5"
},
"suggest": {
"k8s/ws-ratchet": "Ratchet based websocket adapter for websocket based API requests.",
"k8s/ws-swoole": "Swoole based websocket adapter for websocket based API requests.",
"k8s/http-guzzle": "Guzzle based HttpClient for k8s client auto-configuration.",
"k8s/http-symfony": "Symfony based HttpClient for k8s client auto-configuration.",
"symfony/cache": "For a PSR-16 implementation to cache Kubernetes model metadata information."
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"K8s\\Client\\": "src/K8s/Client"
}
},
"autoload-dev": {
"psr-4": {
"unit\\K8s\\Client\\": "tests/unit/K8s/Client",
"integration\\K8s\\Client\\": "tests/integration/K8s/Client"
}
},
"scripts": {
"cs-fix": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix src/ --rules=@PSR2"
],
"analyse": [
"phpstan analyse"
],
"test-unit": [
"phpunit --testsuite unit --coverage-clover coverage-unit.xml"
],
"test-integration": [
"phpunit --testsuite integration --coverage-clover coverage-integration.xml"
]
}
}