yii2-test-1/frontend/config/test.php

19 lines
424 B
PHP
Raw Permalink Normal View History

2023-05-06 20:40:02 +03:00
<?php
return [
'id' => 'app-frontend-tests',
'components' => [
'assetManager' => [
'basePath' => __DIR__ . '/../web/assets',
],
'urlManager' => [
'showScriptName' => true,
],
'request' => [
'cookieValidationKey' => 'test',
],
'mailer' => [
'messageClass' => \yii\symfonymailer\Message::class
]
],
];