-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
60 lines (60 loc) · 1.52 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": "yansongda/hyperf-pay",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"pay",
"yansongda",
"alipay",
"unipay",
"wechat"
],
"description": "可能是基于 hyperf 的最优雅的支付宝、微信、银联支付 SDK 了",
"autoload": {
"psr-4": {
"Yansongda\\HyperfPay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yansongda\\HyperfPay\\Test\\": "tests"
}
},
"require": {
"php": ">=8.0",
"hyperf/guzzle": "^3.0",
"yansongda/pay": "~3.7.0"
},
"require-dev": {
"composer/composer": "^2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/event": "^3.0",
"hyperf/logger": "^3.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^10.0",
"swoole/ide-helper": "dev-master",
"symfony/var-dumper": "^5.1"
},
"suggest": {
"swow/swow": "Required to create swow components."
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "phpunit -c phpunit.xml --colors=always",
"analyse": "phpstan analyse --memory-limit 1024M -l 5 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"hyperf": {
"config": "Yansongda\\HyperfPay\\ConfigProvider"
}
}
}