Update ZF2 submoudle to latest master
[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     ),
13 ));