-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
33 lines (33 loc) · 1.01 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
{
"name": "super-kernel/path-resolver",
"description": "A robust path abstraction layer for the Super-Kernel framework, providing a unified and extensible interface to manage and resolve application-wide paths with consistency.",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"super-kernel",
"path-resolver"
],
"homepage": "https://github.com/super-kernel/path-resolver",
"support": {
"issues": "https://github.com/super-kernel/path-resolver/issues",
"source": "https://github.com/super-kernel/path-resolver"
},
"autoload": {
"psr-4": {
"SuperKernel\\PathResolver\\": "src/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"classmap-authoritative": true,
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "~8.4.0",
"super-kernel/contract": "dev-main",
"super-kernel/attribute": "dev-main"
}
}