]> git.mxchange.org Git - friendica.git/blob - tests/datasets/config/B.node.config.php
add another test
[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                         'v' => true,
27                         'v3' => 1,
28                         'v4' => 5.6443,
29                 ],
30         ],
31         'system' => [
32                 'default_timezone' => 'UTC',
33                 'language' => 'en',
34                 'theme' => 'frio',
35                 'int' => 23,
36                 'float' => 2.5,
37         ],
38 ];