-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.14 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "hypervel/support",
"description": "The Support package for Hypervel.",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"support",
"swoole",
"hypervel"
],
"support": {
"issues": "https://github.com/hypervel/components/issues",
"source": "https://github.com/hypervel/components"
},
"authors": [
{
"name": "Albert Chen",
"email": "albert@hypervel.org"
}
],
"require": {
"php": "^8.2",
"hyperf/context": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/stringable": "~3.1.0",
"hyperf/tappable": "~3.1.0",
"hyperf/collection": "~3.1.0",
"nesbot/carbon": "^2.72.6",
"league/uri": "^7.5"
},
"autoload": {
"psr-4": {
"Hypervel\\Support\\": "src/"
},
"files": [
"src/Functions.php",
"src/helpers.php"
]
},
"extra": {
"branch-alias": {
"dev-main": "0.3-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}