Files
SmartHomePHP/config/db.php
Alex Solomaha c5ae61fddb Some work
2016-08-16 15:07:56 +03:00

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');