99 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.6 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 array(
 | |
|     'doctrine' => array(
 | |
|         'connection' => array(
 | |
|             'orm_default' => array(
 | |
|                 'params' => array(
 | |
|                     'host' => 'localhost',
 | |
|                     'user' => 'sqlmonarcuser',
 | |
|                     'password' => 'password',
 | |
|                     'dbname' => 'monarc_common',
 | |
|                 ),
 | |
|             ),
 | |
|             'orm_cli' => array(
 | |
|                 'params' => array(
 | |
|                     'host' => 'localhost',
 | |
|                     'user' => 'sqlmonarcuser',
 | |
|                     'password' => 'password',
 | |
|                     'dbname' => 'monarc_cli',
 | |
|                 ),
 | |
|             ),
 | |
|         ),
 | |
|     ),
 | |
| 
 | |
|     'languages' => [
 | |
|         'fr' => [
 | |
|             'index' => 1,
 | |
|             'label' => 'Français',
 | |
|         ],
 | |
|         'en' => [
 | |
|             'index' => 2,
 | |
|             'label' => 'English',
 | |
|         ],
 | |
|         'de' => [
 | |
|             'index' => 3,
 | |
|             'label' => 'Deutsch',
 | |
|         ],
 | |
|         'ne' => [
 | |
|             'index' => 4,
 | |
|             'label' => 'Nederlands',
 | |
|         ],
 | |
|     ],
 | |
| 
 | |
|     'defaultLanguageIndex' => 1,
 | |
| 
 | |
|     /* Link with (ModuleCore)
 | |
|     config['languages'] = [
 | |
|         'fr' => array(
 | |
|             'index' => 1,
 | |
|             'label' => 'Français'
 | |
|         ),
 | |
|         'en' => array(
 | |
|             'index' => 2,
 | |
|             'label' => 'English'
 | |
|         ),
 | |
|         'de' => array(
 | |
|             'index' => 3,
 | |
|             'label' => 'Deutsch'
 | |
|         ),
 | |
|         'nl' => array(
 | |
|             'index' => 4,
 | |
|             'label' => 'Nederlands',
 | |
|         ),
 | |
|     ]
 | |
|     */
 | |
|     'activeLanguages' => array('fr','en','de','nl',),
 | |
| 
 | |
|     'appVersion' => $package_json['version'],
 | |
| 
 | |
|     'checkVersion' => true,
 | |
|     'appCheckingURL' => 'https://version.monarc.lu/check/MONARC',
 | |
| 
 | |
|     'email' => [
 | |
|         'name' => 'MONARC',
 | |
|         'from' => 'info@monarc.lu',
 | |
|     ],
 | |
| 
 | |
|     'mospApiUrl' => 'https://objects.monarc.lu/api/v1/',
 | |
| 
 | |
|     'terms' => 'https://my.monarc.lu/terms.html',
 | |
| 
 | |
|     'monarc' => array(
 | |
|         'ttl' => 60, // timeout
 | |
|         'cliModel' => 'generic', // model to display for the client, an ID of a specific model or 'generic' (empty for all)
 | |
|     ),
 | |
| );
 |