Check for ZF2_PATH env var when including ZF2 AutoloaderFactory
[zf2.biz/application_blanche.git] / public / index.php
index b8dc353..60730da 100644 (file)
@@ -1,15 +1,15 @@
 <?php
 chdir(dirname(__DIR__));
-require_once 'vendor/ZendFramework/library/Zend/Loader/AutoloaderFactory.php';
+require_once (getenv('ZF2_PATH') ?: 'vendor/ZendFramework/library') . '/Zend/Loader/AutoloaderFactory.php';
 Zend\Loader\AutoloaderFactory::factory(array('Zend\Loader\StandardAutoloader' => array()));
 
 $appConfig = include 'config/application.config.php';
 
-$moduleManager    = new Zend\Module\Manager($appConfig['modules']);
 $listenerOptions  = new Zend\Module\Listener\ListenerOptions($appConfig['module_listener_options']);
 $defaultListeners = new Zend\Module\Listener\DefaultListenerAggregate($listenerOptions);
-
 $defaultListeners->getConfigListener()->addConfigGlobPath('config/autoload/*.config.php');
+
+$moduleManager = new Zend\Module\Manager($appConfig['modules']);
 $moduleManager->events()->attachAggregate($defaultListeners);
 $moduleManager->loadModules();