-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.5 KB
/
composer.json
File metadata and controls
92 lines (92 loc) · 2.5 KB
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
{
"name": "workerman/webman",
"type": "project",
"keywords": [
"high performance",
"http service"
],
"homepage": "https://www.workerman.net",
"license": "MIT",
"description": "High performance HTTP Service Framework.",
"authors": [
{
"name": "walkor",
"email": "walkor@workerman.net",
"homepage": "https://www.workerman.net",
"role": "Developer"
}
],
"support": {
"email": "walkor@workerman.net",
"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.2",
"workerman/webman-framework": "~2.1",
"monolog/monolog": "^2.0",
"hejunjie/tools": "^2.0",
"hejunjie/bililive": "^1.0",
"vlucas/phpdotenv": "^5.6",
"nesbot/carbon": "^3.8",
"endroid/qr-code": "^6.0",
"workerman/crontab": "^1.0",
"psr/container": "^1.1.1",
"illuminate/redis": "^11.34",
"illuminate/events": "^11.36",
"robmorgan/phinx": "^0.16.5",
"ramsey/uuid": "^4.7",
"illuminate/database": "^11.46",
"illuminate/pagination": "^11.36",
"symfony/var-dumper": "^7.2",
"laravel/serializable-closure": "^2.0",
"hejunjie/hardware-monitor": "^1.0",
"phpmailer/phpmailer": "^6.9",
"webman/openai": "^2.0",
"webman/redis-queue": "~2.1",
"hejunjie/url-signer": "^1.0",
"hejunjie/simple-rule-engine": "^1.0",
"hejunjie/google-authenticator": "^1.0",
"fukuball/jieba-php": "^0.34.0",
"google/protobuf": "^4.33.6",
"hejunjie/encrypted-request": "^2.0",
"hejunjie/lazylog": "^1.0",
"workerman/workerman": "~5.1",
"webman/database": "~2.1",
"webman/redis": "~2.1",
"webman/cache": "~2.1",
"webman/log": "~2.1",
"revolt/event-loop": "^1.0"
},
"suggest": {
"ext-event": "For better performance. "
},
"autoload": {
"psr-4": {
"": "./",
"app\\": "./app",
"App\\": "./app",
"app\\View\\Components\\": "./app/view/components",
"app\\Protobuf\\InteractWordV2\\": "./app/protobuf/InteractWordV2",
"GPBMetadata\\": "app/protobuf/GPBMetadata"
},
"files": [
"./support/helpers.php"
]
},
"scripts": {
"post-package-install": [
"support\\Plugin::install"
],
"post-package-update": [
"support\\Plugin::install"
],
"pre-package-uninstall": [
"support\\Plugin::uninstall"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}