11 lines
205 B
PHP
11 lines
205 B
PHP
|
<?php
|
||
|
return [
|
||
|
'type' => 'mysql',
|
||
|
'hostname' => '127.0.0.1',
|
||
|
'database' => 'foxcms',
|
||
|
'username' => 'root',
|
||
|
'password' => 'root',
|
||
|
'hostport' => '3306',
|
||
|
'charset' => 'utf8mb4',
|
||
|
'prefix' => 'fox_',
|
||
|
];
|