Files
SmartHomePHP/config/db.php
Alex Solomaha fe6b8ffff3 basic app
2016-08-12 17:48:42 +03:00

13 lines
265 B
PHP

<?php
use yii\helpers\ArrayHelper;
$db = [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=example',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
];
return ArrayHelper::merge($db, require 'db-local.php');