-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (48 loc) · 1.07 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
{
"name": "wuheng/aliyun-open-api-core",
"description": "The Core SDK for Aliyun OpenAPI",
"keywords": [
"aliyun",
"open-api",
"php",
"sdk"
],
"homepage": "https://github.com/80boys/wuheng-aliyun-open-api-core",
"license": "MIT",
"authors": [
{
"name": "wuheng",
"email": "[email protected]",
"homepage": "https://github.com/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-4": {
"Alicloud\\Core\\": "aliyun-php-sdk-core",
"Alicloud\\Core\\Auth\\": "aliyun-php-sdk-core/Auth",
"Alicloud\\Core\\Http\\": "aliyun-php-sdk-core/Http",
"Alicloud\\Core\\Profile\\": "aliyun-php-sdk-core/Profile",
"Alicloud\\Core\\Regions\\": "aliyun-php-sdk-core/Regions",
"Alicloud\\Core\\Exception\\": "aliyun-php-sdk-core/Exception"
}
},
"autoload-dev": {
"psr-4": {
"Alicloud\\Core\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
}
}
}