initial commit

This commit is contained in:
2015-09-17 22:03:15 +02:00
commit 4edcf5536e
185 changed files with 5484 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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',
],
*/
],
],
];