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.
34 lines
797 B
34 lines
797 B
<?php namespace Tests\Support\Config;
|
|
|
|
class MockAppConfig
|
|
{
|
|
public $baseURL = 'http://example.com';
|
|
|
|
public $uriProtocol = 'REQUEST_URI';
|
|
|
|
public $cookiePrefix = '';
|
|
public $cookieDomain = '';
|
|
public $cookiePath = '/';
|
|
public $cookieSecure = false;
|
|
public $cookieHTTPOnly = false;
|
|
|
|
public $proxyIPs = '';
|
|
|
|
public $CSRFProtection = false;
|
|
public $CSRFTokenName = 'csrf_test_name';
|
|
public $CSRFHeaderName = 'X-CSRF-TOKEN';
|
|
public $CSRFCookieName = 'csrf_cookie_name';
|
|
public $CSRFExpire = 7200;
|
|
public $CSRFRegenerate = true;
|
|
public $CSRFExcludeURIs = ['http://example.com'];
|
|
public $CSRFRedirect = false;
|
|
|
|
public $CSPEnabled = false;
|
|
|
|
public $defaultLocale = 'en';
|
|
public $negotiateLocale = false;
|
|
public $supportedLocales = [
|
|
'en',
|
|
'es',
|
|
];
|
|
}
|
|
|