MonarcAppFO/config/application.config.php

63 lines
2.0 KiB
PHP
Raw Normal View History

2016-04-12 14:39:18 +02: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';
$appConfDir = getenv('APP_CONF_DIR') ?: null;
defined('PROJECT_ROOT') or define('PROJECT_ROOT', __DIR__ . '/../');
if ($env !== 'testing') {
$confPaths = ['config/autoload/{,*.}{global,local}.php'];
}
$dataPath = 'data';
if (!empty($appConfDir)) {
$confPaths[] = $appConfDir . '/local.php';
$dataPath = $appConfDir . '/data';
if (!is_dir($dataPath . '/cache')) {
if (is_dir(PROJECT_ROOT . 'data/cache')) {
$dataPath = PROJECT_ROOT . 'data';
} elseif (!mkdir($concurrentDirectory = $dataPath . '/cache') && !is_dir($concurrentDirectory)) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
}
}
}
defined('DATA_PATH') or define('DATA_PATH', $dataPath);
2016-12-16 16:31:24 +01:00
return [
'modules' => [
2020-02-21 09:40:34 +01:00
'Laminas\I18n',
'Laminas\Mail',
'Laminas\Log',
'Monarc\Core',
'Monarc\FrontOffice',
2020-02-21 09:40:34 +01:00
'Laminas\Cache',
'Laminas\Form',
'Laminas\InputFilter',
'Laminas\Filter',
'Laminas\Paginator',
'Laminas\Hydrator',
'Laminas\Di',
'Laminas\Router',
'Laminas\Validator',
2016-04-12 14:39:18 +02:00
'DoctrineModule',
'DoctrineORMModule',
],
'module_listener_options' => [
'module_paths' => [
2016-04-12 14:39:18 +02:00
'./module',
'./vendor'
],
'config_glob_paths' => $confPaths,
'config_cache_enabled' => $env === 'production',
'config_cache_key' => 'c8aaaaa11586f8b1bf5565cc6064e70a', // md5('config_cache_key_monarc')
'module_map_cache_enabled' => $env === 'production',
'module_map_cache_key' => '664579376c4dcdcaa0bcdd0f7e7bf25b', // md5('module_map_cache_key_monarc'),
'cache_dir' => $dataPath . '/cache/',
'check_dependencies' => $env !== 'production',
],
];