-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.06 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hypervel/foundation",
"description": "The Foundation package for Hypervel.",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"foundation",
"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",
"nesbot/carbon": "^2.72.6",
"hypervel/core": "^0.3",
"hypervel/filesystem": "^0.3",
"hypervel/support": "^0.3",
"hypervel/http": "^0.3",
"hypervel/validation": "^0.3",
"hyperf/config": "~3.1.0",
"hyperf/di": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/command": "~3.1.0",
"hyperf/collection": "~3.1.0",
"hyperf/context": "~3.1.0",
"hyperf/http-server": "~3.1.0",
"hyperf/stringable": "~3.1.0",
"hyperf/dispatcher": "~3.1.0",
"hyperf/database": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/signal": "~3.1.0",
"hyperf/engine": "^2.1",
"hyperf/db-connection": "~3.1.0",
"hyperf/framework": "~3.1.0",
"friendsofhyperf/pretty-console": "~3.1.0",
"friendsofhyperf/command-signals": "~3.1.0",
"symfony/error-handler": "^6.3"
},
"require-dev": {
"hyperf/testing": "~3.1.0"
},
"autoload": {
"psr-4": {
"Hypervel\\Foundation\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"hyperf": {
"config": "Hypervel\\Foundation\\ConfigProvider"
},
"hypervel" : {
"providers": [
"Hypervel\\Foundation\\Providers\\FoundationServiceProvider"
]
},
"branch-alias": {
"dev-main": "0.3-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}