forked from travisghansen/kubernetes-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 784 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 784 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
{
"name": "travisghansen/kubernetes-client-php",
"type": "library",
"description": "Kubernetes API client in PHP supporting REST operations and Watches",
"license": "Apache-2.0",
"keywords": ["kubernetes", "api", "client", "k8s", "php", "rest"],
"homepage": "https://github.com/travisghansen/kubernetes-client-php/",
"authors": [
{
"name" : "Travis Glenn Hansen"
}
],
"require": {
"php": ">=7.2.0",
"ext-json": "*",
"symfony/yaml": "^5.0",
"flow/jsonpath": "^0.5.0"
},
"suggest": {
"ext-pcntl": "support forking of watches",
"ext-yaml": "support parsing yaml with native extensions"
},
"autoload": {
"psr-0": {"KubernetesClient\\": "src/"}
}
}