-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.12 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "super-kernel/support",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"swoole",
"super-kernel",
"support"
],
"homepage": "https://github.com/super-kernel/support",
"support": {
"issues": "https://github.com/super-kernel/support/issues",
"source": "https://github.com/super-kernel/support"
},
"autoload": {
"psr-4": {
"SuperKernel\\Support\\": "src/"
},
"files": [
"src/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SuperKernelTest\\Support\\": "tests/"
}
},
"config": {
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "~8.4.0",
"super-kernel/context": "~1.0.0"
},
"require-dev": {
"super-kernel/bootstrap": "~1.0.0",
"super-kernel/di": "~1.0.1",
"super-kernel/event-dispatcher": "~1.0.0",
"super-kernel/framework": "~1.0.0"
}
}