3db882fa7c8ae3fe0f2303ef01458bc0fc8de850
[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_self_installation' => false,
14         'manifest_dir' => realpath(__DIR__ . '/../data'),
15     ),
16 ));