Updates and cleanup
[zf2.biz/application_blanche.git] / configs / application.config.php
1 <?php
2 return new Zend\Config\Config(array(
3     'bootstrap_class' => 'Application\Bootstrap',
4     'module_paths' => array(
5         realpath(__DIR__ . '/../modules'),
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 ));