mirror of
https://github.com/flarum/flarum.git
synced 2025-12-08 00:00:33 -05:00
16 lines
277 B
PHP
16 lines
277 B
PHP
<?php
|
|
|
|
return [
|
|
'database' => [
|
|
'driver' => 'mysql',
|
|
'host' => 'localhost',
|
|
'database' => 'flarum',
|
|
'username' => 'root',
|
|
'password' => 'root',
|
|
'charset' => 'utf8',
|
|
'collation' => 'utf8_unicode_ci',
|
|
'prefix' => '',
|
|
'strict' => false
|
|
]
|
|
];
|