-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 772 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 772 Bytes
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
{
"name": "zyimm/hyperf-multi-env",
"type": "library",
"autoload": {
"psr-4": {
"Zyimm\\HyperfMultiEnv\\": "src/"
}
},
"authors": [
{
"name": "zyimm",
"email": "zyimm@qq.com",
"homepage": "https://www.zyimm.com",
"role": "Developer"
}
],
"description":"hyperf 多环境变量共存",
"extra": {
"hyperf": {
"config": "Zyimm\\HyperfMultiEnv\\ConfigProvider"
}
},
"require": {
"php":">=8.0",
"hyperf/event": "~3.0.0",
"hyperf/framework": "~3.0.16",
"vlucas/phpdotenv": "^5.4",
"hyperf/config": "~3.0.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10"
}
}