mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
18 lines
487 B
PHP
18 lines
487 B
PHP
<?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',
|
|
],
|
|
*/
|
|
],
|
|
],
|
|
]; |