-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.21 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
{
"name": "guanhui07/webman-skeleton",
"type": "project",
"keywords": [
"high performance",
"http service"
],
"homepage": "https://www.workerman.net",
"license": "MIT",
"description": "High performance HTTP Service Framework.",
"authors": [
{
"name": "walkor",
"email": "[email protected]",
"homepage": "https://www.workerman.net",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/walkor/webman/issues",
"forum": "https://wenda.workerman.net/",
"wiki": "https://workerman.net/doc/webman",
"source": "https://github.com/walkor/webman"
},
"require": {
"php": ">=8.1",
"workerman/webman-framework": "^1.6.6",
"monolog/monolog": "^2.0",
"webman/auto-route": "^1.0",
"psr/container": "^2.0",
"illuminate/database": "^11.27",
"illuminate/pagination": "^11.30",
"symfony/var-dumper": "^7.1",
"intervention/image": "^3.8",
"gregwar/captcha": "^1.2",
"guzzlehttp/guzzle": "^7.9",
"vlucas/phpdotenv": "^5.6",
"workerman/crontab": "^1.0",
"predis/predis": "^2.2",
"hzdad/wbsms": "^1.0",
"alibabacloud/client": "^1.5",
"webman/log": "^1.2",
"yzh52521/webman-mailer": "^1.1",
"tinywan/storage": "^1.0",
"webman/gateway-worker": "^1.0",
"gai871013/ip-location": "^1.1",
"endroid/qr-code": "^5.1",
"w7corp/easywechat": "^2.1",
"inhere/php-validate": "^3.0",
"webman/console": "^1.3",
"workerman/gatewayclient": "^3.0",
"php-di/php-di": "^7.0",
"firebase/php-jwt": "^6.10",
"hyperf/utils": "^3.1",
"wen-gg/webman-migrations": "^1.0",
"guanhui07/dcr-permission": "^1.0",
"illuminate/redis": "^11.30"
},
"suggest": {
"ext-event": "For better performance. "
},
"autoload": {
"psr-4": {
"": "./",
"app\\": "./app",
"App\\": "./app",
"app\\View\\Components\\": "./app/view/components"
},
"files": [
"./support/helpers.php"
]
},
"scripts": {
"post-package-install": [
"support\\Plugin::install"
],
"post-package-update": [
"support\\Plugin::install"
],
"pre-package-uninstall": [
"support\\Plugin::uninstall"
]
}
}