From 744746135254b3fe712d41e3a9b125cf50002a34 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Wed, 24 Feb 2016 13:43:00 +0100 Subject: [PATCH] Add namespace prefix for psr-4 > Defining autoload.psr-4 with an empty namespace prefix is a bad idea for performance --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 796c4c157..70a50f09c 100644 --- a/composer.json +++ b/composer.json @@ -126,7 +126,7 @@ } }, "autoload": { - "psr-4": { "": "src/" }, + "psr-4": { "Wallabag\\": "src/Wallabag/" }, "classmap": [ "app/AppKernel.php", "app/AppCache.php" ] }, "config": {