Merge pull request #70 from EvanDotPro/feature/zf2-path-env
[zf2.biz/galerie.git] / README.md
index f3fd2fa..dd9072b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -31,24 +31,21 @@ recommended that you use Composer due to the dependency management it provides.
 You will also need to update public/index.php and modules/Application/Module.php to enable autoloading.
 For public/index.php, replace lines 2-13 with:
 
-    chdir(dirname(__DIR__));
-    require_once (getenv('ZF2_PATH') ?: 'vendor/ZendFramework/library') . '/Zend/Loader/AutoloaderFactory.php';
-
     use Zend\Loader\AutoloaderFactory,
         Zend\ServiceManager\ServiceManager,
         Zend\Mvc\Service\ServiceManagerConfiguration;
 
-    // setup autoloader
+    chdir(dirname(__DIR__));
+    require_once (getenv('ZF2_PATH') ?: 'vendor/ZendFramework/library') . '/Zend/Loader/AutoloaderFactory.php';
+
+    // Setup autoloader
     AutoloaderFactory::factory();
 
-For modules/Application/Module.php add:
+Within modules/Application/Module.php add this method to the Application class:
 
     public function getAutoloaderConfig()
     {
         return array(
-            'Zend\Loader\ClassMapAutoloader' => array(
-                __DIR__ . '/autoload_classmap.php',
-            ),
             'Zend\Loader\StandardAutoloader' => array(
                 'namespaces' => array(
                     __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
@@ -57,5 +54,7 @@ For modules/Application/Module.php add:
         );
     }
 
+Virtual Host
+------------
 Afterwards, set up a virtual host to point to the public/ directory of the
-project and you should be ready to go!
\ No newline at end of file
+project and you should be ready to go!