Files
yii2-usuario/tests/_app/config/db.php
Antonio Ramirez b0cf145c6b php cs fixer
2016-12-15 23:01:45 +01:00

16 lines
298 B
PHP

<?php
$db = [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=test',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
];
if (file_exists(__DIR__.'/db.local.php')) {
$db = array_merge($db, require(__DIR__.'/db.local.php'));
}
return $db;