forked from maclof/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 860 Bytes
/
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
{
"name": "maclof/kubernetes-client",
"description": "A simple yet elegant client for accessing and controlling a Kubernetes cluster.",
"keywords": ["kubernetes", "docker", "container", "cluster", "guzzle", "guzzlehttp"],
"authors": [
{
"name": "Marc Lough",
"homepage": "http://maclof.com"
}
],
"license" : "MIT",
"require": {
"php" : ">=5.4",
"guzzlehttp/guzzle" : "~6.0",
"illuminate/support": ">=5.0",
"flow/jsonpath" : "~0.4",
"ratchet/pawl" : "~0.3",
"symfony/yaml" : "~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit" : "~7.0",
"mockery/mockery" : "~1.2",
"php-coveralls/php-coveralls": "~2.0"
},
"autoload": {
"psr-4": {
"Maclof\\Kubernetes\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}