mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-11 01:38:50 +01:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
|
|
return [
|
|
'components' => [
|
|
'fixture' => [
|
|
'class' => 'yii\test\DbFixtureManager',
|
|
'basePath' => '@app/tests/unit/fixtures',
|
|
],
|
|
'db' => [
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2basic_unit',
|
|
],
|
|
],
|
|
];
|