-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.07 KB
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "super-kernel/contract",
"description": "Core interface definitions for the Super Kernel framework.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"framework",
"super-kernel",
"contract",
"interfaces"
],
"homepage": "https://github.com/super-kernel/contract",
"support": {
"issues": "https://github.com/super-kernel/contract/issues",
"source": "https://github.com/super-kernel/contract"
},
"autoload": {
"psr-4": {
"SuperKernel\\Contract\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^8.4",
"psr/container": "^2.0",
"psr/log": "^3.0"
},
"archive": {
"exclude": [
"/.editorconfig",
"/.gitattributes",
"/.gitignore",
"/.idea",
"/vendor"
]
}
}