mirror of https://github.com/flarum/flarum
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
|
||
|
]
|
||
|
];
|