_config.php 353 B

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