-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
40 lines (40 loc) · 1.01 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
{
"name": "devstub/kubernetes-api-php-client",
"description": "PHP client for the kubernetes api",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "Apache-2.0",
"keywords": ["kubernetes", "api", "client", "restful", "http"],
"homepage": "https://github.com/devstub/kubernetes-api-php-client",
"authors": [
{
"name": "Faruk Brbovic",
"email": "[email protected]",
"homepage": "http://www.devstub.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/devstub/jsonmapper.git"
}
],
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "5.0.3",
"netresearch/jsonmapper": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"DevStub\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevStub\\Tests\\": "tests/"
}
}
}