32 lines
831 B
PHP
Executable File
32 lines
831 B
PHP
Executable File
<?php
|
|
|
|
# @Author: 嗨噜客(三亚) <fm453>
|
|
# @Date: 2022-05-15T21:33:17+08:00
|
|
# @Email: fm453@lukegzs.com
|
|
# @Last modified by: fm453
|
|
# @Last modified time: 2024-06-29T16:38:03+08:00
|
|
# @Copyright: www.hiluker.cn
|
|
|
|
$config = [
|
|
'components' => [
|
|
'db' => [
|
|
'class' => 'yii\db\Connection',
|
|
'dsn' => 'mysql:host=127.0.0.1;dbname=sass',
|
|
'username' => 'sass',
|
|
'password' => 'ejxsrxZCP34xNjF2',
|
|
'charset' => 'utf8',
|
|
'tablePrefix' => '',
|
|
],
|
|
'ac' => [
|
|
'class' => 'yii\db\Connection',
|
|
'dsn' => 'mysql:host=127.0.0.1;dbname=ctms',
|
|
'username' => 'ctms',
|
|
'password' => 'bm2a7BrJzWN1nSsk',
|
|
'charset' => 'utf8',
|
|
'tablePrefix' => '',
|
|
],
|
|
],
|
|
];
|
|
|
|
return $config;
|