- Move settings, defaults and dbstructure to directory 'static' - Dynamic loading of config files (after the static loading) - Filter out '-sample.config.php' and '-sample.ini.php' files - Remove unnecessary ConfigFileManager - Move ConfigFileLoader to Utils - Add tests for multi-loading for INI, config and sample-filtering
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			500 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * A test file for local configuration
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
return [
 | 
						|
	'database' => [
 | 
						|
		'hostname' => 'testhost',
 | 
						|
		'username' => 'testuser',
 | 
						|
		'password' => 'testpw',
 | 
						|
		'database' => 'testdb',
 | 
						|
		'charset' => 'utf8mb4',
 | 
						|
	],
 | 
						|
 | 
						|
	'config' => [
 | 
						|
		'admin_email' => 'admin@test.it',
 | 
						|
		'sitename' => 'Friendica Social Network',
 | 
						|
		'register_policy' => \Friendica\Module\Register::OPEN,
 | 
						|
		'register_text' => '',
 | 
						|
	],
 | 
						|
	'system' => [
 | 
						|
		'default_timezone' => 'UTC',
 | 
						|
		'language' => 'en',
 | 
						|
		'theme' => 'frio',
 | 
						|
	],
 | 
						|
];
 |