]> git.mxchange.org Git - friendica.git/blob - tests/datasets/config/B.config.php
76bcb6e761b1afcda6768d97c889ed92064c39fa
[friendica.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                 'pdo_emulate_prepares' => true,
16         ],
17
18         'config' => [
19                 'admin_email' => 'admin@overwritten.local',
20                 'sitename' => 'Friendica Social Network',
21                 'register_policy' => \Friendica\Module\Register::OPEN,
22                 'register_text' => '',
23         ],
24         'system' => [
25                 'default_timezone' => 'UTC',
26                 'language' => 'en',
27                 'theme' => 'frio',
28                 'newKey' => 'newValue',
29         ],
30 ];