-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.26 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.26 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
{
"name": "kariricode/class-discovery",
"description": "PHP 8.4+ class discovery component with attribute scanning, token-based parsing, multi-tier caching, and dependency analysis. Part of the KaririCode Framework ecosystem.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Walmir Silva",
"email": "walmir.silva@kariricode.org"
}
],
"require": {
"php": "^8.4"
},
"require-dev": {},
"suggest": {
"kariricode/cache": "For PSR-16 cache integration via CacheBridge",
"kariricode/configurator": "For environment-aware discovery configuration",
"kariricode/dependency-injection": "For PSR-11 container integration"
},
"autoload": {
"psr-4": {
"KaririCode\\ClassDiscovery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KaririCode\\ClassDiscovery\\Tests\\": "tests/"
}
},
"scripts": {
"quality": "kcode quality",
"test": "kcode test --coverage",
"analyse": "kcode analyse",
"cs:fix": "kcode cs:fix"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}