forked from zhangv/union-pay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.56 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "zhangv/union-pay",
"description": "The simplest union pay",
"keywords": ["unionpay","银联支付","银联","银联网关支付","银联代收","银联全渠道","银联移动支付","银联无跳转支付","银联B2B"],
"homepage": "https://github.com/zhangv/union-pay",
"license": "MIT",
"authors": [
{
"name": "ZhangV",
"email": "derekzhangv@gmail.com",
"homepage": "https://zhangv.com",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/zhangv/union-pay",
"issues": "https://github.com/zhangv/union-pay/issues"
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-openssl": "*"
},
"require-dev": {
"php": "^7.1",
"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",
"theseer/phpdox": "^0.10.1",
"mockery/mockery": "^0.9.4",
"phpstan/phpstan": "^0.9.2",
"fzaninotto/faker": "^1.7"
},
"autoload": {
"psr-4": {
"zhangv\\unionpay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"zhangv\\unionpay\\Test\\": "test/"
}
},
"scripts": {
"fresh": [
"rm -rf vendor composer.lock",
"composer install"
],
"phpstan": "vendor/bin/phpstan analyse -l 0 src",
"phpunit": "vendor/bin/phpunit --bootstrap ./vendor/autoload.php ./test/AllTests.php"
},
"prefer-stable": true
}