-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.32 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.32 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "hypervel/http",
"type": "library",
"description": "The http package for Hypervel.",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"swoole",
"http",
"hypervel"
],
"authors": [
{
"name": "Albert Chen",
"email": "albert@hypervel.org"
}
],
"support": {
"issues": "https://github.com/hypervel/components/issues",
"source": "https://github.com/hypervel/components"
},
"autoload": {
"psr-4": {
"Hypervel\\Http\\": "src/"
}
},
"require": {
"php": "^8.2",
"hyperf/http-server": "~3.1.0",
"hyperf/collection": "~3.1.0",
"hyperf/stringable": "~3.1.0",
"hyperf/codec": "~3.1.0",
"hyperf/context": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/resource": "~3.1.0",
"nesbot/carbon": "^2.72.6"
},
"suggest": {
"hypervel/session": "Required to `session` function in request.",
"hypervel/validation": "Required to `validate` function in request."
},
"config": {
"sort-packages": true
},
"extra": {
"hyperf": {
"config": "Hypervel\\Http\\ConfigProvider"
},
"branch-alias": {
"dev-main": "0.3-dev"
}
}
}