]> git.mxchange.org Git - friendica.git/blob - tests/datasets/config/B.node.config.php
spelling: endpoints
[friendica.git] / tests / datasets / config / B.node.config.php
1 <?php
2
3 return [
4         'database' => [
5                 'hostname' => 'testhost',
6                 'username' => 'testuser',
7                 'password' => 'testpw',
8                 'database' => 'testdb',
9                 'charset' => 'utf8mb4',
10         ],
11         'config' => [
12                 'admin_email' => 'admin@test.it',
13                 'sitename' => 'Friendica Social Network',
14                 'register_policy' => 2,
15                 'register_text' => '',
16                 'test' => [
17                         'a' => [
18                                 'next' => 'value',
19                                 'bool' => false,
20                                 'innerArray' => [
21                                         'a' => 4.55,
22                                         'b' => false,
23                                         'string2' => 'false',
24                                 ],
25                         ],
26                         'bool_true' => true,
27                         'bool_false' => false,
28                         'int_1_not_true' => 1,
29                         'int_0_not_false' => 0,
30                         'v4' => 5.6443,
31                         'string_1_not_true' => '1',
32                         'string_0_not_false' => '0',
33                 ],
34         ],
35         'system' => [
36                 'default_timezone' => 'UTC',
37                 'language' => 'en',
38                 'theme' => 'frio',
39                 'int' => 23,
40                 'float' => 2.5,
41                 'with special chars' => 'I can\'t follow this "$&§%"$%§$%&\'[),',
42         ],
43 ];