5f35e66bbf88c0f5944edf9bc56eb2785cb750af
[zf2.biz/galerie.git] / configs / application.config.php
1 <?php
2 return array(
3     'module_paths' => array(
4         realpath(__DIR__ . '/../modules'),
5         realpath(__DIR__ . '/../vendors'),
6     ),
7     'modules' => array(
8         'Application',
9     ),
10     'module_manager_options' => array( 
11         'enable_config_cache'      => false,
12         'cache_dir'                => realpath(__DIR__ . '/../data/cache'),
13         'enable_dependency_check'  => false,
14         'enable_auto_installation' => false,
15         'manifest_dir'             => realpath(__DIR__ . '/../data'),
16     ),
17 );