9d3b84517a
* Compatible with PHP 8.1 and Codeception 5 * Add PHP 8.1 to workflow * PHP 7.4 as a minimum * Updated dependencies Co-authored-by: Luke English <luke.english@ec2i.biz>
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
$params = require __DIR__ . '/params.php';
|
|
$db = require __DIR__ . '/test_db.php';
|
|
|
|
/**
|
|
* Application configuration shared by all test types
|
|
*/
|
|
return [
|
|
'id' => 'basic-tests',
|
|
'basePath' => dirname(__DIR__),
|
|
'aliases' => [
|
|
'@bower' => '@vendor/bower-asset',
|
|
'@npm' => '@vendor/npm-asset',
|
|
],
|
|
'language' => 'en-US',
|
|
'components' => [
|
|
'db' => $db,
|
|
'mailer' => [
|
|
'class' => \yii\symfonymailer\Mailer::class,
|
|
'viewPath' => '@app/mail',
|
|
// send all mails to a file by default.
|
|
'useFileTransport' => true,
|
|
'messageClass' => 'yii\symfonymailer\Message'
|
|
],
|
|
'assetManager' => [
|
|
'basePath' => __DIR__ . '/../web/assets',
|
|
],
|
|
'urlManager' => [
|
|
'showScriptName' => true,
|
|
],
|
|
'user' => [
|
|
'identityClass' => 'app\models\User',
|
|
],
|
|
'request' => [
|
|
'cookieValidationKey' => 'test',
|
|
'enableCsrfValidation' => false,
|
|
// but if you absolutely need it set cookie domain to localhost
|
|
/*
|
|
'csrfCookie' => [
|
|
'domain' => 'localhost',
|
|
],
|
|
*/
|
|
],
|
|
],
|
|
'params' => $params,
|
|
];
|