Blame view

common/config/test.php 317 Bytes
c237629a   Anastasia   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  return [
      'id' => 'app-common-tests',
      'basePath' => dirname(__DIR__),
      'components' => [
          'user' => [
              'class' => 'yii\web\User',
              'identityClass' => 'common\models\User',
          ],
          'request' => [
              'cookieValidationKey' => 'test',
          ],
      ],
  ];