2016-04-12 14:39:18 +02:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return array(
|
2016-06-02 11:04:52 +02:00
|
|
|
'doctrine' => array(
|
|
|
|
'connection' => array(
|
|
|
|
'orm_default' => array(
|
|
|
|
'params' => array(
|
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'root',
|
|
|
|
'password' => 'password',
|
|
|
|
'dbname' => 'monarc_common',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
'orm_cli' => array(
|
|
|
|
'params' => array(
|
|
|
|
'host' => 'localhost',
|
|
|
|
'user' => 'root',
|
|
|
|
'password' => 'password',
|
2016-06-02 14:02:25 +02:00
|
|
|
'dbname' => 'monarc_master',
|
2016-06-02 11:04:52 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2016-06-02 12:16:03 +02:00
|
|
|
|
2016-07-28 11:20:16 +02:00
|
|
|
/* Link with (ModuleCore)
|
|
|
|
config['languages'] = [
|
|
|
|
'fr' => array(
|
|
|
|
'index' => 1,
|
|
|
|
'label' => 'Français'
|
|
|
|
),
|
|
|
|
'en' => array(
|
|
|
|
'index' => 2,
|
|
|
|
'label' => 'English'
|
|
|
|
),
|
|
|
|
'de' => array(
|
|
|
|
'index' => 3,
|
|
|
|
'label' => 'Deutsch'
|
|
|
|
),
|
|
|
|
]
|
|
|
|
*/
|
|
|
|
'activeLanguages' => array('fr','en','de',),
|
|
|
|
|
|
|
|
'monarc' => array(
|
|
|
|
'ttl' => 20, // timeout
|
|
|
|
'salt' => '', // salt privé pour chiffrement pwd
|
|
|
|
),
|
2016-04-12 14:39:18 +02:00
|
|
|
);
|