-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (40 loc) · 1.06 KB
/
composer.json
File metadata and controls
42 lines (40 loc) · 1.06 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": "link-cloud/fast-hyperf",
"type": "library",
"description": "LinkCloud Fast Hyperf",
"license": "Apache-2.0",
"require": {
"php": ">=8.2",
"hyperf/config": "~3.1",
"hyperf/command": "~3.1",
"hyperf/db-connection": "~3.1",
"hyperf/framework": "~3.1",
"hyperf/http-server": "~3.1",
"hyperf/redis": "~3.1",
"hyperf/crontab": "~3.1",
"hyperf/process": "~3.1",
"hyperf/logger": "~3.1",
"hyperf/cache": "~3.1",
"hyperf/snowflake": "~3.1",
"hyperf/coroutine": "~3.1",
"marc-mabe/php-enum": "~4.0",
"swlib/saber": "^1.0",
"yiisoft/var-dumper": "^1.2",
"firebase/php-jwt": "^5.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"LinkCloud\\Fast\\Hyperf\\": "src/"
},
"files": [
"src/Functions.php"
]
},
"extra": {
"hyperf": {
"config": "LinkCloud\\Fast\\Hyperf\\ConfigProvider"
}
}
}