-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
62 lines (62 loc) · 1.39 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
{
"name": "w7/rangine",
"description": "基于 Swoole 的常驻内存型 PHP 高性能框架",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "RenChao",
"email": "donknap@gmail.com"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"w7/rangine-compat": "~3.0.0",
"w7/rangine-contract": "~3.1.0",
"w7/rangine-facade": "~3.1.0",
"w7/rangine-http-message": "~3.0.0",
"w7/rangine-database-tool": "~3.0.0",
"w7/rangine-lang": "~3.0.0",
"w7/rangine-command": "~3.0.0",
"w7/rangine-package-plugin": "~3.0.0",
"illuminate/config": "^8.0",
"illuminate/database": "^8.0",
"illuminate/events": "^8.0",
"illuminate/redis": "^8.0",
"illuminate/validation": "^8.0",
"illuminate/pagination": "^8.0",
"nikic/fast-route": "^1.3",
"monolog/monolog": "^1.2|^2.0",
"vlucas/phpdotenv": "^3.3",
"symfony/console": "^4.3|^5.0",
"filp/whoops": "^2.7",
"twig/twig": "^3.0"
},
"require-dev": {
"swoole/ide-helper": "^4.4",
"w7/php-cs-fixer": "*",
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"W7\\": "Src/",
"W7\\Tests\\": "tests/"
},
"files": [
"Src/Core/Helper/Functions.php",
"Src/Core/Config/Define.php"
]
},
"bin": [
"bin/rangine-server",
"bin/rangine-gerent"
],
"config": {
"allow-plugins": {
"w7/php-cs-fixer": true,
"funkjedi/composer-include-files": true,
"w7/rangine-package-plugin": true
}
}
}