Added to the basic app, fixed config, added to core commands.
This commit is contained in:
parent
f7116a0339
commit
86d0e987a5
@ -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,
|
||||
];
|
||||
|
0
tests/unit/fixtures/.gitkeep
Normal file
0
tests/unit/fixtures/.gitkeep
Normal file
0
tests/unit/templates/fixtures/.gitkeep
Normal file
0
tests/unit/templates/fixtures/.gitkeep
Normal file
Loading…
Reference in New Issue
Block a user