From f1a7e426d70e54a94db7d03fc0edefb616265d3d Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Mon, 24 Jul 2023 14:10:27 +0200 Subject: [PATCH] [Composer] Changed order of namespace autoloading to improve DX --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index fbf0e17f..0f8b6f6e 100644 --- a/composer.json +++ b/composer.json @@ -8,11 +8,11 @@ }, "autoload": { "psr-4": { - "EzSystems\\EzPlatformRestBundle\\": "src/bundle/", - "EzSystems\\EzPlatformRest\\": "src/lib/", "Ibexa\\Bundle\\Rest\\": "src/bundle/", "Ibexa\\Rest\\": "src/lib/", - "Ibexa\\Contracts\\Rest\\": "src/contracts/" + "Ibexa\\Contracts\\Rest\\": "src/contracts/", + "EzSystems\\EzPlatformRestBundle\\": "src/bundle/", + "EzSystems\\EzPlatformRest\\": "src/lib/" } }, "autoload-dev": {