forked from yansongda/pay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.08 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
{
"name": "yansongda/pay",
"description": "专注 Alipay 和 WeChat 的支付扩展包",
"keywords": ["alipay", "wechat", "pay"],
"type": "library",
"support": {
"issues": "https://github.com/yansongda/pay/issues",
"source": "https://github.com/yansongda/pay"
},
"authors": [
{
"name": "yansongda",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"ext-openssl": "*",
"ext-simplexml":"*",
"ext-libxml": "*",
"ext-json": "*",
"ext-bcmath": "*",
"yansongda/supports": "^2.0",
"symfony/http-foundation": "^4.0 || ^5.0",
"symfony/event-dispatcher": "^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"mockery/mockery": "^1.2",
"friendsofphp/php-cs-fixer": "^2.15"
},
"autoload": {
"psr-4": {
"Yansongda\\Pay\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yansongda\\Pay\\Tests\\": "tests"
}
},
"license": "MIT"
}