-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
41 lines (41 loc) · 1.07 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
{
"name": "maclof/kubernetes-client",
"description": "A simple yet elegant client for accessing and controlling a Kubernetes cluster.",
"keywords": ["kubernetes", "docker", "container", "cluster"],
"authors": [
{
"name" : "Marc Lough",
"homepage": "http://maclof.com"
}
],
"license" : "MIT",
"require": {
"php" : "^7.4|^8.0",
"php-http/client-common": "^2.0",
"php-http/discovery" : "^1.0",
"illuminate/support" : "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"ratchet/pawl" : "^0.3",
"symfony/yaml" : "^4.0|^5.0|^6.0|^7.0",
"softcreatr/jsonpath" : "^0.5 || ^0.7 || ^0.8"
},
"require-dev": {
"phpunit/phpunit" : "~7.0|~9.5",
"mockery/mockery" : "~1.2",
"php-coveralls/php-coveralls": "~2.0",
"php-http/socket-client" : "^2.0",
"nyholm/psr7": "^1.4"
},
"autoload": {
"psr-4": {
"Maclof\\Kubernetes\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/helpers/HttpMethodsMockClient.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}