19 lines
665 B
Plaintext
19 lines
665 B
Plaintext
<?php
|
|
/**
|
|
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
return [
|
|
// Additional modules to include when in development mode
|
|
'modules' => [
|
|
],
|
|
// Configuration overrides during development mode
|
|
'module_listener_options' => [
|
|
'config_glob_paths' => [realpath(__DIR__) . '/autoload/{,*.}{global,local}-development.php'],
|
|
'config_cache_enabled' => false,
|
|
'module_map_cache_enabled' => false,
|
|
],
|
|
];
|