-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
37 lines (37 loc) · 883 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
{
"name": "zhangv/wechat-pay",
"description": "The simplest wechat pay",
"keywords": ["weixin","wechat","wechatpay","微信支付"],
"homepage": "https://github.com/zhangv/wechat-pay",
"license": "MIT",
"authors": [
{
"name": "ZhangV",
"email": "[email protected]",
"homepage": "https://zhangv.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/zhangv/wechat-pay",
"issues": "https://github.com/zhangv/wechat-pay/issues"
},
"require": {
"php": ">=7.0",
"ext-json": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.5.14",
"squizlabs/php_codesniffer": "^2.9.2",
"phpmd/phpmd": "^2.9.1",
"sebastian/phpcpd": "^3.0.1"
},
"autoload": {
"psr-4": {
"zhangv\\wechat\\pay\\": "src/"
}
}
}