-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 984 Bytes
/
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
{
"name": "acgrid/qcloud",
"description": "QCloud SDK",
"keywords": [
"tencent",
"qcloud",
"qcloud-sdk",
"sdk"
],
"license": "MIT",
"authors": [
{
"name": "acgrid",
"email": "[email protected]"
}
],
"require": {
"php":">=7.0",
"ext-openssl": "*",
"pimple/pimple": "^3.0",
"monolog/monolog": "^1.17",
"guzzlehttp/guzzle": "^6.3",
"tightenco/collect": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^5",
"overtrue/phplint": "dev-master",
"mockery/mockery": "^1.0@dev"
},
"autoload": {
"psr-4": {
"QCloudSDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"QCloudSDKTests\\": "tests/"
}
},
"suggest": {
"http-interop/response-sender": "Actually send PSR-7 response object if no compatible components are used."
}
}