yii2-netdisk/config/test.php

47 lines
1.3 KiB
PHP
Raw Normal View History

2016-07-15 02:03:28 +08:00
<?php
$params = require __DIR__ . '/params.php';
$db = require __DIR__ . '/test_db.php';
2016-07-15 02:03:28 +08:00
/**
* Application configuration shared by all test types
*/
return [
'id' => 'basic-tests',
'basePath' => dirname(__DIR__),
'aliases' => [
'@bower' => '@vendor/bower-asset',
'@npm' => '@vendor/npm-asset',
],
2016-07-15 02:03:28 +08:00
'language' => 'en-US',
'components' => [
'db' => $db,
2016-07-15 02:03:28 +08:00
'mailer' => [
'class' => \yii\symfonymailer\Mailer::class,
'viewPath' => '@app/mail',
// send all mails to a file by default.
2016-07-15 02:03:28 +08:00
'useFileTransport' => true,
2022-06-17 23:46:18 +08:00
'messageClass' => 'yii\symfonymailer\Message'
2016-07-15 02:03:28 +08:00
],
'assetManager' => [
'basePath' => __DIR__ . '/../web/assets',
],
2016-07-15 02:03:28 +08:00
'urlManager' => [
'showScriptName' => true,
],
2016-07-16 09:13:51 +08:00
'user' => [
'identityClass' => 'app\models\User',
],
2016-07-15 02:03:28 +08:00
'request' => [
2016-07-16 09:13:51 +08:00
'cookieValidationKey' => 'test',
2016-07-15 02:03:28 +08:00
'enableCsrfValidation' => false,
// but if you absolutely need it set cookie domain to localhost
/*
'csrfCookie' => [
'domain' => 'localhost',
],
*/
],
2016-07-15 02:03:28 +08:00
],
'params' => $params,
];