Initial commit
This commit is contained in:
11
environments/test/frontend/config/codeception-local.php
Normal file
11
environments/test/frontend/config/codeception-local.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return yii\helpers\ArrayHelper::merge(
|
||||
require dirname(dirname(__DIR__)) . '/common/config/codeception-local.php',
|
||||
require __DIR__ . '/main.php',
|
||||
require __DIR__ . '/main-local.php',
|
||||
require __DIR__ . '/test.php',
|
||||
require __DIR__ . '/test-local.php',
|
||||
[
|
||||
]
|
||||
);
|
||||
12
environments/test/frontend/config/main-local.php
Normal file
12
environments/test/frontend/config/main-local.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
$config = [
|
||||
'components' => [
|
||||
'request' => [
|
||||
// !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
|
||||
'cookieValidationKey' => '',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
return $config;
|
||||
4
environments/test/frontend/config/params-local.php
Normal file
4
environments/test/frontend/config/params-local.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
];
|
||||
4
environments/test/frontend/config/test-local.php
Normal file
4
environments/test/frontend/config/test-local.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
];
|
||||
Reference in New Issue
Block a user