generated from renoki-co/laravel-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
60 lines (60 loc) · 1.62 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
{
"name": "renoki-co/php-k8s",
"description": "Control your Kubernetes clusters with this PHP-based Kubernetes client. It supports any form of authentication, the exec API, and it has an easy implementation for CRDs.",
"keywords": [
"laravel",
"php",
"kubernetes",
"k8s",
"k3s",
"k0s",
"cluster",
"api",
"kubeadm",
"kubeapi",
"kube"
],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/php-k8s",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"guzzlehttp/guzzle": "^6.5|^7.0",
"illuminate/macroable": "^9.35|^10.1|^11.0",
"illuminate/support": "^9.35|^10.1|^11.0",
"ratchet/pawl": "^0.4.1",
"symfony/process": "^5.4|^6.0|^7.0",
"vierbergenlars/php-semver": "^2.1|^3.0"
},
"suggest": {
"ext-yaml": "YAML extension is used to read or generate YAML from PHP K8s internal classes."
},
"autoload": {
"psr-4": {
"RenokiCo\\PhpK8s\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\PhpK8s\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.23|^8.1|^9.0",
"phpunit/phpunit": "^9.5.20|^10.0",
"vimeo/psalm": "^4.20|^5.22"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}