-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
46 lines (46 loc) · 1.02 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
{
"name": "yunify/qingstor-sdk",
"homepage": "https://www.qingstor.com",
"description": "The official QingStor SDK for the PHP programming language.",
"keywords": [
"qingcloud",
"yunify",
"qingstor",
"object storage",
"sdk"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Yunify SDK Group",
"email": "[email protected]",
"homepage": "https://www.qingstor.com"
}
],
"support": {
"forum": "https://community.qingcloud.com/",
"issues": "https://github.com/yunify/qingstor-sdk-php/issues"
},
"require": {
"guzzlehttp/guzzle": "^7.2",
"katzgrau/klogger": "^1.2.1",
"mustangostang/spyc": "~0.6"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"behat/behat": "^3.8.1",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"QingStor\\SDK\\": "src/",
"QingStor\\SDK\\Service\\": "src/QingStor/"
}
},
"autoload-dev": {
"psr-4": {
"QingStor\\SDK\\Test\\": "tests/"
}
}
}