-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
55 lines (55 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "apigee/edge",
"type": "library",
"description": "Apigee Edge API is a set of objects that communicate with Apigee's Edge management server via REST calls to manage developers, apps, and other entities.",
"keywords": [
"http",
"rest",
"web service",
"curl"
],
"homepage": "http://github.com/apigee/edge-php-sdk",
"license": "MIT",
"authors": [
{
"name": "Daniel Johnson",
"email": "djohnson@apigee.com",
"homepage": "http://apigee.com/",
"role": "Developer"
},
{
"name": "Brian Hasselbeck",
"email": "hasselbeck.brian@gmail.com",
"homepage": "http://brianhasselbeck.com/",
"role": "Developer"
},
{
"name": "Isaias Arellano",
"email": "isaias.arellano.delgado@gmail.com",
"role": "Developer"
},
{
"name": "Stephen Gilson",
"email": "sgilson@apigee.com",
"homepage": "http://apigee.com",
"role": "Documentation"
}
],
"require": {
"php": ">=7.1",
"guzzle/guzzle": ">=3.7",
"psr/log": "1.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/yaml": ">=2.1"
},
"suggest": {
"apigee/apigee-client-php" : "The new, actively maintained and supported version of this library."
},
"autoload": {
"psr-0": {
"Apigee": "./"
}
}
}