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:
Snider 2026-04-23 15:43:39 +01:00
parent 62dc3f3b69
commit e41d3f4d1e

View file

@ -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": {