Add config glob pattern to application.config.php
[zf2.biz/galerie.git] / config / application.config.php
1 <?php
2 return array(
3     'modules' => array(
4         'Application',
5     ),
6     'module_listener_options' => array( 
7         'config_glob_paths'    => array(
8             'config/autoload/{,*.}{global,local}.php',
9         ),
10         'config_cache_enabled' => false,
11         'cache_dir'            => 'data/cache',
12         'module_paths' => array(
13             './module',
14             './vendor',
15         ),
16     ),
17     'service_manager' => array(
18         'use_defaults' => true,
19         'factories'    => array(
20         ),
21     ),
22 );