PHP Classes

File: tests/unit/Config/test.php

Recommend this page to a friend!
  Classes of Smoren Freelight   Yii2 Query Relation Manager   tests/unit/Config/test.php   Download  
File: tests/unit/Config/test.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Yii2 Query Relation Manager
Run queries to model objects using filters
Author: By
Last change: Update of tests/unit/Config/test.php
Date: 1 year ago
Size: 1,024 bytes
 

Contents

Class file image Download
<?php
$db
= require __DIR__ . '/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' => [
           
'useFileTransport' => true,
        ],
       
'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' => [],
];