Updated zf2 submodule and module manager option key
[zf2.biz/galerie.git] / configs / application.config.php
1 <?php
2 return new Zend\Config\Config(array(
3     'module_paths' => array(
4         realpath(__DIR__ . '/../modules'),
5     ),
6     'modules' => array(
7         'Application',
8     ),
9     'module_manager_options' => array( 
10         'enable_config_cache'      => false,
11         'cache_dir'                => realpath(__DIR__ . '/../data/cache'),
12         'enable_dependency_check'  => false,
13         'enable_auto_installation' => false,
14         'manifest_dir'             => realpath(__DIR__ . '/../data'),
15     ),
16 ));