| 123456789101112131415 |
- <?php
- /**
- * Application configuration for acceptance tests
- */
- return yii\helpers\ArrayHelper::merge(
- require(__DIR__ . '/../../../config/web.php'),
- require(__DIR__ . '/config.php'),
- [
- 'components' => [
- 'db' => [
- 'dsn' => 'mysql:host=localhost;dbname=yii2_basic_acceptance',
- ],
- ],
- ]
- );
|