From e41d3f4d1e06d49c23d4db0ffbdc9e5adf9b55c9 Mon Sep 17 00:00:00 2001 From: Snider Date: Thu, 23 Apr 2026 15:43:39 +0100 Subject: [PATCH] fix(composer): autoload php/ not src/php/ to match actual tree layout MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 4cad614..3f5db6c 100644 --- a/composer.json +++ b/composer.json @@ -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": {