From 08e5559e721c331868c6a12acef885336ad4cc38 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Wed, 23 May 2012 13:18:43 +0200 Subject: [PATCH] Adding required classmap autoloading (because of Module.php) and fixing PSR-0 path --- composer.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index c3a98395..b174f7c6 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,10 @@ }, "autoload": { "psr-0": { - "ZfcUser": "module/ZfcUser/src" - } + "ZfcUser": "src/" + }, + "classmap": [ + "./" + ] } }