19 lines
537 B
PHP
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,
|
|
],
|
|
],
|
|
]; |