18 lines
355 B
PHP
18 lines
355 B
PHP
<?php
|
|
/**
|
|
* Application configuration shared by all test types
|
|
*/
|
|
return [
|
|
'components' => [
|
|
'db' => [
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2_basic_tests',
|
|
],
|
|
'mailer' => [
|
|
'useFileTransport' => true,
|
|
],
|
|
'urlManager' => [
|
|
'showScriptName' => true,
|
|
],
|
|
],
|
|
];
|