You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
487 B
18 lines
487 B
<?php
|
|
/**
|
|
* Application configuration shared by all applications functional tests
|
|
*/
|
|
return [
|
|
'components' => [
|
|
'request' => [
|
|
// it's not recommended to run functional tests with CSRF validation enabled
|
|
'enableCsrfValidation' => false,
|
|
// but if you absolutely need it set cookie domain to localhost
|
|
/*
|
|
'csrfCookie' => [
|
|
'domain' => 'localhost',
|
|
],
|
|
*/
|
|
],
|
|
],
|
|
]; |