-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
executable file
·111 lines (111 loc) · 3.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "thefair/thefairlib",
"type": "library",
"description": "The PHP library for TheFair",
"keywords": [
"thefair"
],
"homepage": "https://github.com/thefair-net/thefairlib",
"license": "MIT",
"authors": [
{
"name": "Zhang Han",
"email": "[email protected]"
},
{
"name": "Liu mingzhi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"ext-swoole": ">=4.5",
"ext-json": "*",
"ext-redis": "*",
"ext-posix": "*",
"hyperf/cache": "~2.1.0",
"hyperf/command": "~2.1.0",
"hyperf/config": "~2.1.0",
"hyperf/contract": "~2.1.0",
"hyperf/database": "~2.1.0",
"hyperf/db-connection": "~2.1.0",
"hyperf/devtool": "~2.1.0",
"hyperf/di": "~2.1.0",
"hyperf/dispatcher": "~2.1.0",
"hyperf/event": "~2.1.0",
"hyperf/exception-handler": "~2.1.0",
"hyperf/framework": "~2.1.0",
"hyperf/guzzle": "~2.1.0",
"hyperf/http-server": "~2.1.0",
"hyperf/logger": "~2.1.0",
"hyperf/memory": "~2.1.0",
"hyperf/paginator": "~2.1.0",
"hyperf/pool": "~2.1.0",
"hyperf/process": "~2.1.0",
"hyperf/redis": "~2.1.0",
"hyperf/utils": "~2.1.0",
"hyperf/json-rpc": "~2.1.0",
"hyperf/rpc": "~2.1.0",
"hyperf/rpc-client": "~2.1.0",
"hyperf/rpc-server": "~2.1.0",
"hyperf/constants": "~2.1.0",
"hyperf/async-queue": "~2.1.0",
"hyperf/model-cache": "~2.1.0",
"hyperf/task": "~2.1.0",
"hyperf/translation": "~2.1.0",
"hyperf/validation": "~2.1.0",
"hyperf/rate-limit": "~2.1.0",
"hyperf/retry": "~2.1.0",
"hyperf/crontab": "~2.1.0",
"hyperf/filesystem": "~2.1.0",
"hyperf/signal": "~2.1.0",
"hyperf/service-governance": "~2.1.0",
"hyperf/nacos": "~2.1.0",
"yurunsoft/phpmailer-swoole": "~1.0",
"xxtime/flysystem-aliyun-oss": "^1.5",
"overtrue/flysystem-qiniu": "~1.0",
"lmz/hyperf-config": "~2.1.0",
"emojione/emojione": "^4.5",
"overtrue/wechat": "~4.0"
},
"require-dev": {
"swoole/ide-helper": "^4.5",
"friendsofphp/php-cs-fixer": "^2.14",
"hyperf/testing": "2.1.*",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^0.12.18",
"symfony/var-dumper": "^5.1"
},
"autoload": {
"psr-4": {
"TheFairLib\\": "src/"
},
"files": [
"src/Library/Utils/Utility.php"
]
},
"scripts": {
"cs-fix": "php-cs-fixer fix ./src",
"analyse": "phpstan analyse --memory-limit 600M -l 0 -c phpstan.neon ./src ./publish"
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
},
"hyperf": {
"config": "TheFairLib\\ConfigProvider"
}
},
"bin": [
"bin/service_stop.sh",
"bin/tf_start.sh",
"bin/tf_stop.sh",
"bin/tf_restart.sh"
],
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}