-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.16 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.16 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
{
"name": "super-kernel/contract",
"description": "Core interface definitions for the super-kernel framework. This package provides the abstract contracts to guide dependency injection and ensures architectural integrity by preventing direct implementation coupling.",
"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.0",
"psr/container": "~2.0.0",
"psr/event-dispatcher": "~1.0.0",
"psr/http-message": "~2.0.0",
"psr/log": "~3.0.0",
"symfony/console": "~8.0.0"
}
}