_config.php 338 B

1234567891011121314151617
  1. <?php
  2. use yii\helpers\ArrayHelper;
  3. $config = require(__DIR__ . '/../../config/web.php');
  4. return ArrayHelper::merge($config, [
  5. 'components' => [
  6. 'fixture' => [
  7. 'class' => 'yii\test\DbFixtureManager',
  8. 'basePath' => '@tests/unit/fixtures',
  9. ],
  10. 'db' => [
  11. 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_unit',
  12. ],
  13. ],
  14. ]);