Dynamic config loading
[friendica.git/.git] / tests / datasets / config / B.config.php
1 <?php
2
3 /**
4  * A test file for local configuration
5  *
6  */
7
8 return [
9         'database' => [
10                 'hostname' => 'testhost',
11                 'username' => 'testuser',
12                 'password' => 'testpw',
13                 'database' => 'testdb',
14                 'charset' => 'utf8mb4',
15         ],
16
17         'config' => [
18                 'admin_email' => 'admin@overwritten.local',
19                 'sitename' => 'Friendica Social Network',
20                 'register_policy' => \Friendica\Module\Register::OPEN,
21                 'register_text' => '',
22         ],
23         'system' => [
24                 'default_timezone' => 'UTC',
25                 'language' => 'en',
26                 'theme' => 'frio',
27                 'newKey' => 'newValue',
28         ],
29 ];