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