-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 735 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 735 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
27
28
29
30
{
"name": "therealgambo/kong-php",
"description": "A PHP7 compliant library for interacting with the Kong Gateway Admin API.",
"keywords": ["kong", "kong gateway", "mashape-kong", "api-gateway"],
"type": "Library",
"require": {
"php": ">=7.0",
"mashape/unirest-php": "3.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.4"
},
"support": {
"issues": "https://github.com/therealgambo/kong-php/issues"
},
"license": "MIT",
"author": "therealgambo (https://github.com/therealgambo)",
"autoload": {
"psr-4": {
"TheRealGambo\\Kong\\": "src/Kong"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}