_config.php 238 B

12345678910111213
  1. <?php
  2. use yii\helpers\ArrayHelper;
  3. $config = require(__DIR__ . '/../../config/web.php');
  4. return ArrayHelper::merge($config, [
  5. 'components' => [
  6. 'db' => [
  7. 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_acceptance',
  8. ],
  9. ],
  10. ]);