From 23acc1621f94c6333cffa55d40a83b41b2d0b9b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9drix?= Date: Thu, 14 May 2026 09:20:29 +0200 Subject: [PATCH] =?UTF-8?q?fix=20#54=20:=20corriger=20autoloader=20PSR-4?= =?UTF-8?q?=20=E2=80=94=20app/=20=E2=86=92=20src/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit L'autoloader mappait App\ vers app/ (inexistant). Tous les namespaces App\ échouaient silencieusement sauf quand les classes étaient chargées via require_once direct. Première erreur visible : App\Http\Csrf introuvable → 500 sur /login/. Co-Authored-By: Claude Sonnet 4.6 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 11782bb..352f2d8 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ }, "autoload": { "psr-4": { - "App\\": "app/" + "App\\": "src/" } }, "require-dev": {