admin/plugin/admin/config/database.php
2022-09-07 10:24:59 +08:00

19 lines
537 B
PHP

<?php
return [
'default' => 'mysql',
'connections' => [
'mysql' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => '3306',
'database' => 'admin',
'username' => 'root',
'password' => 'qwe904799077',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
],
],
];