64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
<?php
|
|
/**
|
|
* Local Configuration Override
|
|
*
|
|
* This configuration override file is for overriding environment-specific and
|
|
* security-sensitive configuration information. Copy this file without the
|
|
* .dist extension at the end and populate values as needed.
|
|
*
|
|
* @NOTE: This file is ignored from Git by default with the .gitignore included
|
|
* in ZendSkeletonApplication. This is a good practice, as it prevents sensitive
|
|
* credentials from accidentally being committed into version control.
|
|
*/
|
|
|
|
$package_json = json_decode(file_get_contents('./package.json'), true);
|
|
|
|
return [
|
|
'doctrine' => [
|
|
'connection' => [
|
|
'orm_default' => [
|
|
'params' => [
|
|
'host' => 'localhost',
|
|
'user' => 'sqlmonarcuser',
|
|
'password' => 'password',
|
|
'dbname' => 'monarc_common',
|
|
],
|
|
],
|
|
'orm_cli' => [
|
|
'params' => [
|
|
'host' => 'localhost',
|
|
'user' => 'sqlmonarcuser',
|
|
'password' => 'password',
|
|
'dbname' => 'monarc_master',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
|
|
/* Link with (ModuleCore)
|
|
config['languages'] = [
|
|
'fr' => array(
|
|
'index' => 1,
|
|
'label' => 'Français'
|
|
),
|
|
'en' => array(
|
|
'index' => 2,
|
|
'label' => 'English'
|
|
),
|
|
'de' => array(
|
|
'index' => 3,
|
|
'label' => 'Deutsch'
|
|
),
|
|
]
|
|
*/
|
|
|
|
'appVersion' => $package_json['version'],
|
|
|
|
'activeLanguages' => ['fr','en','de','nl'],
|
|
|
|
'monarc' => [
|
|
'ttl' => 20, // timeout
|
|
'salt' => '', // salt privé pour chiffrement pwd
|
|
],
|
|
];
|