codeception-local.php 454 B

1234567891011121314151617
  1. <?php
  2. return yii\helpers\ArrayHelper::merge(
  3. require __DIR__ . '/main.php',
  4. require __DIR__ . '/main-local.php',
  5. require __DIR__ . '/test.php',
  6. require __DIR__ . '/test-local.php',
  7. [
  8. 'components' => [
  9. 'request' => [
  10. // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
  11. 'cookieValidationKey' => '',
  12. ],
  13. ],
  14. ]
  15. );