-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
33 lines (33 loc) · 920 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
{
"name": "qcloud/weapp-sdk",
"type": "library",
"description": "php sdk for qcloud weapp server",
"keywords": ["qcloud", "sdk", "weapp"],
"homepage": "https://www.qcloud.com/",
"license": "MIT",
"authors": [
{
"name": "miusuncle",
"email": "[email protected]",
"homepage": "http://miusuncle.github.io/"
}
],
"require": {
"php": ">=5.4.0",
"qcloud/cos-sdk-v5": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"satooshi/php-coveralls": "~1.0"
},
"scripts": {
"test-server": "php -t ./tests/test-server -S 127.0.0.1:9993",
"test": "phpunit --configuration phpunit.xml.dist",
"coveralls": "coveralls --coverage_clover build/logs/clover.xml --verbose"
},
"autoload": {
"psr-4": {
"QCloud_WeApp_SDK\\": "lib/"
}
}
}