From 95971a618062b89b04e913362ac53e1398484785 Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Fri, 28 Sep 2012 09:58:38 +0300 Subject: [PATCH] Optimize autoload prefix in composer.json By having more specific autoload prefixes it is possible to reduce the number of stat calls made. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a98ceca3c01..b6d8c7a89a0 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" }, "autoload": { - "psr-0": { "Doctrine\\ORM": "lib/" } + "psr-0": { "Doctrine\\ORM\\": "lib/" } }, "bin": ["bin/doctrine", "bin/doctrine.php"], "extra": {