mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-20 03:11:26 +01:00
14 lines
268 B
PHP
14 lines
268 B
PHP
<?php
|
|
|
|
use yii\helpers\ArrayHelper;
|
|
|
|
$db = [
|
|
'class' => 'yii\db\Connection',
|
|
'dsn' => 'mysql:host=localhost;dbname=smarthome',
|
|
'username' => 'root',
|
|
'password' => '',
|
|
'charset' => 'utf8',
|
|
];
|
|
|
|
return ArrayHelper::merge($db, require 'db-local.php');
|