. */ /* * Configuration file for CSRF Protector. */ return [ 'logDirectory' => base_dir().'/logs', 'failedAuthAction' => [ 'GET' => 0, 'POST' => 0, ], 'jsUrl' => base_path().'/assets/dist/js/csrf/csrfprotector.js', 'tokenLength' => 10, 'cookieConfig' => [ 'path' => base_path(), 'secure' => isHTTPS(true), ], 'verifyGetFor' => [], 'CSRFP_TOKEN' => '', 'disabledJavascriptMessage' => '', ];