From 23d09bd57d58c0e6fc7c24da0d75ed7561c5ebab Mon Sep 17 00:00:00 2001 From: kenjis Date: Tue, 25 Jun 2024 13:33:49 +0900 Subject: [PATCH] chore: add missing / at the end It seems better to put / at the end of directories. See https://getcomposer.org/doc/04-schema.md#psr-4 --- admin/starter/composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/starter/composer.json b/admin/starter/composer.json index b84684d82a4f..38a51e29fb64 100644 --- a/admin/starter/composer.json +++ b/admin/starter/composer.json @@ -21,7 +21,7 @@ "autoload": { "psr-4": { "App\\": "app/", - "Config\\": "app/Config" + "Config\\": "app/Config/" }, "exclude-from-classmap": [ "**/Database/Migrations/**"