forked from pfinalclub/pfinal-tiangang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.14 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "tiangang/waf",
"description": "天罡 WAF - 基于 Workerman 的高性能 Web 应用防火墙",
"type": "project",
"require": {
"php": ">=8.3",
"pfinalclub/asyncio": "^2.1",
"workerman/workerman": "^4.1",
"symfony/yaml": "^6.0",
"predis/predis": "^2.0",
"monolog/monolog": "^3.0",
"vlucas/phpdotenv": "^5.0",
"guzzlehttp/guzzle": "^7.0",
"webman/admin": "^1.0",
"illuminate/database": "^12.0",
"illuminate/pagination": "^12.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"app\\": "app/",
"Tiangang\\Waf\\Plugins\\Waf\\": "plugins/waf/"
},
"files": [
"app/admin/helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tiangang\\Waf\\Tests\\": "tests/"
}
},
"scripts": {
"start": "php start.php start",
"stop": "php start.php stop",
"restart": "php start.php restart",
"reload": "php start.php reload",
"status": "php start.php status"
}
}