-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.35 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
{
"name": "tencentcloudbase/tcb-manager-php",
"description": "tencentcloudbase management side sdk for php",
"keywords": ["tencentcloud", "tencentcloudbase", "TCB", "TcbManager"],
"homepage": "https://cloud.tencent.com/product/tcb",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "liuyanjie",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/TencentCloudBase/tcb-manager-php/issues"
},
"scripts": {
"test": "phpunit -v --process-isolation --globals-backup --debug --configuration tests/phpunit.xml tests",
"release": "sh release.sh"
},
"require": {
"php": "^7.0.0",
"ext-json": "*",
"nelexa/zip": "^3.1",
"webmozart/path-util": "^2.3",
"tencentcloudbase/tencentcloud-client-php": "1.1.3",
"tencentcloudbase/tcb-php-sdk": "1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"phpunit/php-code-coverage": "^7.0"
},
"autoload": {
"psr-4": {
"TcbManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TcbManager\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": ["build", "tests", "vendor"]
}
}