mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
47 lines
988 B
PHP
47 lines
988 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
return [
|
|
'database' => [
|
|
'hostname' => 'testhost',
|
|
'username' => 'testuser',
|
|
'password' => 'testpw',
|
|
'database' => 'testdb',
|
|
'charset' => 'utf8mb4',
|
|
],
|
|
'config' => [
|
|
'admin_email' => 'admin@test.it',
|
|
'sitename' => 'Friendica Social Network',
|
|
'register_policy' => 2,
|
|
'register_text' => '',
|
|
'test' => [
|
|
'a' => [
|
|
'next' => 'value',
|
|
'bool' => false,
|
|
'innerArray' => [
|
|
'a' => 4.55,
|
|
'b' => false,
|
|
'string2' => 'false',
|
|
],
|
|
],
|
|
'bool_true' => true,
|
|
'bool_false' => false,
|
|
'int_1_not_true' => 1,
|
|
'int_0_not_false' => 0,
|
|
'v4' => 5.6443,
|
|
'string_1_not_true' => '1',
|
|
'string_0_not_false' => '0',
|
|
],
|
|
],
|
|
'system' => [
|
|
'default_timezone' => 'UTC',
|
|
'language' => 'en',
|
|
'theme' => 'frio',
|
|
'int' => 23,
|
|
'float' => 2.5,
|
|
'with special chars' => 'I can\'t follow this "$&§%"$%§$%&\'[),',
|
|
],
|
|
];
|