Initial skeleton in place with ZF2 submodule pointed at current master
[zf2.biz/application_blanche.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_config' => array( 
10         'cache_config'  => false,
11         'cache_dir'     => realpath(__DIR__ . '/../data/cache'),
12     ),
13 ));