Added to the basic app, fixed config, added to core commands.

This commit is contained in:
Mark 2014-01-04 01:16:05 +04:00
parent f7116a0339
commit 86d0e987a5
3 changed files with 14 additions and 0 deletions

View File

@ -1,4 +1,7 @@
<?php
Yii::setAlias('tests', __DIR__ . '/../tests');
$params = require(__DIR__ . '/params.php');
return [
'id' => 'basic-console',
@ -19,6 +22,17 @@ return [
],
],
],
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
],
'fixture' => [
'class' => 'yii\test\DbFixtureManager',
'basePath' => '@tests/unit/fixtures',
],
],
'params' => $params,
];

View File

View File