forked from luzzhong/tcc-transaction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.42 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
{
"name": "loyaltylu/tcc-transaction",
"authors": [
{
"name": "luzhong",
"email": "[email protected]"
}
],
"require": {
"hyperf/config": "~2.2.0",
"hyperf/di": "~2.2.0",
"hyperf/guzzle": "^2.2",
"hyperf/logger": "~2.2.0",
"hyperf/nsq": "~2.2.0",
"hyperf/redis": "~2.2.0",
"hyperf/rpc-client": "~2.2.0",
"hyperf/server": "~2.2.0",
"hyperf/snowflake": "~2.2.0",
"hyperf/utils": "~2.2",
"phpmailer/phpmailer": "~6.1"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12"
},
"replace":{
"loyaltylu/transaction": "1.1.0"
},
"autoload": {
"psr-4": {
"LoyaltyLu\\TccTransaction\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LoyaltyLu\\TccTransaction\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {},
"hyperf": {
"config": "LoyaltyLu\\TccTransaction\\ConfigProvider"
}
},
"scripts": {
"test": "co-phpunit -c phpunit.xml --colors=always",
"analyse": "phpstan analyse --memory-limit 4096M -l 5 -c phpstan.neon",
"cs-fix": "php-cs-fixer fix $1"
},
"minimum-stability": "dev",
"prefer-stable": true
}