config.php 375 Bytes
Newer Older
Mark committed
1 2
<?php
/**
3
 * Application configuration shared by all applications and test types
Mark committed
4 5
 */
return [
6
    'components' => [
7 8 9
        'db' => [
            'dsn' => 'mysql:host=localhost;dbname=yii2_advanced_tests',
        ],
10
        'mailer' => [
11 12 13 14 15 16
            'useFileTransport' => true,
        ],
        'urlManager' => [
            'showScriptName' => true,
        ],
    ],
Mark committed
17
];