fix(composer): autoload php/ not src/php/ to match actual tree layout
After the e2d1d32 → revert cycle the code moved back to php/ but
composer.json autoload paths stayed pointing at src/php/ (which
does not exist). package:discover fails with "Class
Core\\Mod\\Agentic\\Boot not found" as soon as a downstream
consumer composer-installs the dev branch.
Co-Authored-By: Virgil <virgil@lethean.io>
This commit is contained in:
parent
62dc3f3b69
commit
e41d3f4d1e
1 changed files with 4 additions and 4 deletions
|
|
@ -16,14 +16,14 @@
|
|||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Core\\Mod\\Agentic\\": "src/php/",
|
||||
"Core\\Service\\Agentic\\": "src/php/Service/"
|
||||
"Core\\Mod\\Agentic\\": "php/",
|
||||
"Core\\Service\\Agentic\\": "php/Service/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Core\\Mod\\Agentic\\Tests\\": "src/php/tests/",
|
||||
"Tests\\": "src/php/tests/"
|
||||
"Core\\Mod\\Agentic\\Tests\\": "php/tests/",
|
||||
"Tests\\": "php/tests/"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue