-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1007 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
{
"name": "zhangv/wechat-apiclient",
"description": "The simplest wechat API client",
"keywords": ["weixin","wechat","wechatapi","微信API"],
"homepage": "https://github.com/zhangv/wechat-apiclient",
"license": "MIT",
"authors": [
{
"name": "ZhangV",
"email": "[email protected]",
"homepage": "https://zhangv.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/zhangv/wechat-apiclient",
"issues": "https://github.com/zhangv/wechat-apiclient/issues"
},
"require": {
"php": ">=7.0",
"ext-curl": "*",
"ext-json": "*",
},
"require-dev": {
"phpunit/phpunit": "6.5.8",
"squizlabs/php_codesniffer": "^2.7",
"phpmd/phpmd": "^2.4",
"symfony/yaml":"*",
"phing/phing": "2.*",
"phploc/phploc": "^4.0",
"pdepend/pdepend" : "2.5.2",
"sebastian/phpcpd": "^3.0",
"symfony/dependency-injection": "4.1.12"
},
"autoload": {
"psr-4": {
"zhangv\\wechat\\": "src/"
}
}
}