Blame view

basic2/config/test.php 1.25 KB
2fe1e5ce8   Андрей Ларионов   Первый коммит на ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  <?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,
  ];