15 lines
256 B
PHP
15 lines
256 B
PHP
<?php
|
|
/**
|
|
* application configurations shared by all test types
|
|
*/
|
|
return [
|
|
'components' => [
|
|
'mail' => [
|
|
'useFileTransport' => true,
|
|
],
|
|
'urlManager' => [
|
|
'showScriptName' => true,
|
|
],
|
|
],
|
|
];
|