-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.09 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.09 KB
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
56
57
58
{
"name" : "jdcloud-api/apigateway-signer",
"homepage" : "https://www.jdcloud.com/help/faq?act=3",
"description" : "JDCloud API gataway Signer for PHP",
"keywords" : [
"jdcloud",
"signer",
"api gateway"
],
"type" : "library",
"license" : "Apache-2.0",
"authors" : [{
"name" : "Bibo",
"email" : "wangbibo@jd.com"
}
],
"support" : {
"issues" : "https://github.com/jdcloud-api/jdcloud-sdk-php-signer/issues"
},
"require" : {
"php" : ">=5.5",
"guzzlehttp/guzzle" : "^5.3.1|^6.2.1",
"guzzlehttp/psr7" : "^1.4.1"
},
"require-dev" : {
"ext-dom" : "*",
"phpunit/phpunit" : "^4.8.35|^5.4.3",
"behat/behat" : "~3.0",
"doctrine/cache" : "~1.4",
"nette/neon" : "^2.3",
"andrewsville/php-token-reflection" : "^1.4",
"psr/cache" : "^1.0"
},
"suggest" : {
"ext-openssl" : "Allows using ssl"
},
"autoload" : {
"psr-4" : {
"JdcloudSign\\" : "src"
},
"files" : [
"src/functions.php"
]
},
"autoload-dev" : {
"psr-4" : {
"Jdcloud\\Test\\" : "tests/"
},
"classmap" : [
"build/"
]
},
"extra" : {
"branch-alias" : {
"dev-master" : "3.0-dev"
}
}
}