-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
98 lines (98 loc) · 2.46 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
{
"name": "workerman/webman",
"type": "project",
"keywords": [
"high performance",
"http service"
],
"homepage": "http://www.workerman.net",
"license": "MIT",
"description": "High performance HTTP Service Framework.",
"authors": [
{
"name": "walkor",
"email": "[email protected]",
"homepage": "http://www.workerman.net",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/walkor/webman/issues",
"forum": "http://wenda.workerman.net/",
"wiki": "http://workerman.net/doc/webman",
"source": "https://github.com/walkor/webman"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-gd": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"workerman/webman-framework": "^1.5",
"monolog/monolog": "^2.0",
"illuminate/redis": "^8.83",
"webman/console": "1.2.12",
"tinywan/validate": "^0.0.3",
"tinywan/captcha": "^0.0.2",
"tinywan/limit-traffic": "^0.0.4",
"guzzlehttp/guzzle": "^7.4",
"aliyuncs/oss-sdk-php": "^2.4",
"tinywan/weather": "^0.0.1",
"tinywan/storage": "^0.3.1",
"yansongda/pay": "~3.1.0",
"illuminate/database": "^8.83",
"illuminate/pagination": "^8.83",
"illuminate/events": "^8.83",
"tinywan/webman-lock": "dev-main",
"webman/event": "^1.0",
"tinywan/exception-handler": "^1.1",
"tinywan/rpc": "^1.2",
"tinywan/jwt": "^1.8",
"workbunny/webman-nacos": "^1.1",
"webman/gateway-worker": "^1.0",
"webman/think-orm": "^1.1",
"casbin/webman-permission": "^1.2",
"psr/container": "^1.1",
"php-di/php-di": "^6.4",
"mkorkmaz/redislabs-rejson": "^2.0",
"ethanhann/redisearch-php": "^1.9",
"webman/push": "^1.0"
},
"suggest": {
"ext-event": "For better performance. "
},
"autoload": {
"psr-4": {
"Tinywan\\RedisWatcher\\" : "vendor/tinywan/redis-watcher/src",
"Tinywan\\WebmanLock\\" : "vendor/tinywan/webman-lock/src",
"" : "./"
},
"psr-0": {
"": "extend/"
},
"files": [
"./support/helpers.php"
]
},
"scripts": {
"post-package-install": [
"support\\Plugin::install"
],
"pre-package-uninstall": [
"support\\Plugin::uninstall"
]
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}