-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.87 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "appwrite-labs/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/cuppett/php-k8s",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
},
{
"name": "Stephen Cuppett",
"email": "steve@cuppett.com",
"homepage": "https://github.com/cuppett",
"role": "Fork Maintainer"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"composer/semver": "^3.4",
"guzzlehttp/guzzle": "^7.10",
"illuminate/macroable": "^12.0",
"illuminate/support": "^12.0",
"ratchet/pawl": "^0.4.3",
"symfony/process": "^7.4"
},
"suggest": {
"ext-yaml": "YAML extension is used to read or generate YAML from PHP K8s internal classes.",
"aws/aws-sdk-php": "Required for native EKS token generation without AWS CLI."
},
"autoload": {
"psr-4": {
"RenokiCo\\PhpK8s\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\PhpK8s\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"laravel/pint": "^1.29",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^10.9.0",
"phpunit/phpunit": "^11.5",
"vimeo/psalm": "^6.16.1"
},
"config": {
"sort-packages": true
}
}