14 lines
239 B
Plaintext
14 lines
239 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'enabled' => false,
|
|
'host' => '127.0.0.1',
|
|
'port' => 3306,
|
|
'database' => 'fotobox',
|
|
'username' => 'fotobox_user',
|
|
'password' => 'change-me',
|
|
'table_prefix' => 'fb_',
|
|
];
|