-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·55 lines (55 loc) · 1.45 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
{
"name": "wlsh/frame",
"description": "运行环境:php8 / nginx1.18.0 / swoole4.5.9 / Mysql8 / Redis6",
"keywords": [
"swoole",
"php"
],
"authors": [
{
"name": "hanhyu",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-swoole": ">=4.8.6",
"ext-mongodb": ">=1.9.0",
"ext-redis": ">=5.3.2",
"monolog/monolog": "2.2.0",
"symfony/mailer": "6.0.3",
"webgeeker/validation": "0.5.2",
"mongodb/mongodb": "1.8.0",
"elasticsearch/elasticsearch": "^7.11.x-dev",
"longlang/phpkafka": "1.2.1",
"envms/fluentpdo": "2.2.4",
"smi2/phpclickhouse": "^1.4"
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
},
"autoload": {
"psr-4": {
"App\\Models\\": "application/models",
"App\\Domain\\": "application/domain",
"App\\Modules\\": "application/modules",
"App\\Library\\": "application/library",
"App\\Controllers\\": "application/controllers",
"App\\Services\\": "application/services",
"Tests\\": "tests/",
"Console\\Controllers\\": "console/controllers",
"Console\\Models\\": "console/models"
}
},
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^3.6.0",
"phpunit/phpunit": "^9.5.0",
"hightman/xunsearch": "1.4.13",
"swoole/ide-helper": "4.8.6"
}
}