Remove unused bootstrap_class config value from Application module
[zf2.biz/galerie.git] / configs / application.config.php
index d725788..b716191 100644 (file)
@@ -1,13 +1,14 @@
 <?php
-return new Zend\Config\Config(array(
+return array(
     'module_paths' => array(
         realpath(__DIR__ . '/../modules'),
+        realpath(__DIR__ . '/../vendors'),
     ),
     'modules' => array(
         'Application',
     ),
-    'module_manager_options' => array( 
-        'enable_config_cache' => false,
-        'cache_dir'           => realpath(__DIR__ . '/../data/cache'),
+    'module_listener_options' => array( 
+        'config_cache_enabled'     => false,
+        'cache_dir'                => realpath(__DIR__ . '/../data/cache'),
     ),
-));
+);