2017-02-13 14:47:14 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Configuration file generated by ZFTool
|
|
|
|
* The previous configuration file is stored in application.config.old
|
|
|
|
*
|
|
|
|
* @see https://github.com/zendframework/ZFTool
|
|
|
|
*/
|
|
|
|
$env = getenv('APP_ENV') ?: 'production';
|
2019-10-30 14:52:53 +01:00
|
|
|
$appConfDir = getenv('APP_CONF_DIR') ?: '';
|
2017-03-10 14:03:35 +01:00
|
|
|
|
2019-10-30 14:52:53 +01:00
|
|
|
$confPaths = ['config/autoload/{,*.}{global,local}.php'];
|
|
|
|
$dataPath = 'data';
|
|
|
|
if (!empty($appConfDir)) {
|
|
|
|
$confPaths[] = $appConfDir . '/local.php';
|
|
|
|
$dataPath = $appConfDir . '/data';
|
|
|
|
if (!is_dir($dataPath . '/cache')
|
|
|
|
&& !mkdir($concurrentDirectory = $dataPath . '/cache') && !is_dir($concurrentDirectory)
|
|
|
|
) {
|
|
|
|
throw new RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
|
2017-04-11 10:21:52 +02:00
|
|
|
}
|
2017-03-10 14:03:35 +01:00
|
|
|
}
|
2019-10-30 14:52:53 +01:00
|
|
|
|
2017-02-13 14:47:14 +01:00
|
|
|
return array(
|
|
|
|
'modules' => array(
|
2020-02-21 11:46:10 +01:00
|
|
|
'Laminas\Di',
|
|
|
|
'Laminas\Cache',
|
|
|
|
'Laminas\Form',
|
|
|
|
'Laminas\InputFilter',
|
|
|
|
'Laminas\Filter',
|
|
|
|
'Laminas\Paginator',
|
|
|
|
'Laminas\Hydrator',
|
|
|
|
'Laminas\Router',
|
|
|
|
'Laminas\Log',
|
|
|
|
'Laminas\Mail',
|
|
|
|
'Laminas\Validator',
|
|
|
|
'Laminas\I18n',
|
2017-02-13 14:47:14 +01:00
|
|
|
'DoctrineModule',
|
|
|
|
'DoctrineORMModule',
|
2019-10-30 14:52:53 +01:00
|
|
|
'Monarc\Core',
|
|
|
|
'Monarc\BackOffice',
|
2017-02-13 14:47:14 +01:00
|
|
|
),
|
|
|
|
'module_listener_options' => array(
|
|
|
|
'module_paths' => array(
|
|
|
|
'./module',
|
|
|
|
'./vendor'
|
|
|
|
),
|
2019-10-30 14:52:53 +01:00
|
|
|
'config_glob_paths' => $confPaths,
|
|
|
|
'config_cache_enabled' => $env === 'production',
|
2017-02-13 14:47:14 +01:00
|
|
|
'config_cache_key' => 'c8aaaaa11586f8b1bf5565cc6064e70a', // md5('config_cache_key_monarc')
|
2019-10-30 14:52:53 +01:00
|
|
|
'module_map_cache_enabled' => $env === 'production',
|
2017-02-13 14:47:14 +01:00
|
|
|
'module_map_cache_key' => '664579376c4dcdcaa0bcdd0f7e7bf25b', // md5('module_map_cache_key_monarc'),
|
2019-10-30 14:52:53 +01:00
|
|
|
'cache_dir' => $dataPath . '/cache/',
|
|
|
|
'check_dependencies' => $env !== 'production',
|
2017-02-13 14:47:14 +01:00
|
|
|
),
|
|
|
|
);
|