Convert to singular path names and move ZF2 submodule
[zf2.biz/galerie.git] / config / application.config.php
1 <?php
2 return array(
3     'module_paths' => array(
4         realpath(dirname(__DIR__) . '/module'),
5         realpath(dirname(__DIR__) . '/vendor'),
6     ),
7     'modules' => array(
8         'Application',
9     ),
10     'module_listener_options' => array( 
11         'config_cache_enabled'    => false,
12         'cache_dir'               => realpath(dirname(__DIR__) . '/data/cache'),
13         'application_environment' => getenv('APPLICATION_ENV'),
14     ),
15 );