From d020b4fcc878dee59b3fbe4d14ec755169c74729 Mon Sep 17 00:00:00 2001 From: Shleeble Date: Tue, 30 Apr 2019 15:17:39 +0800 Subject: [PATCH] Delete recaptcha.php --- config/recaptcha.php | 66 -------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 config/recaptcha.php diff --git a/config/recaptcha.php b/config/recaptcha.php deleted file mode 100644 index 049af6d5..00000000 --- a/config/recaptcha.php +++ /dev/null @@ -1,66 +0,0 @@ - env('RECAPTCHA_PUBLIC_KEY', ''), - 'private_key' => env('RECAPTCHA_PRIVATE_KEY', ''), - - /* - |-------------------------------------------------------------------------- - | Template - |-------------------------------------------------------------------------- - | - | Set a template to use if you don't want to use the standard one. - | - */ - 'template' => '', - - /* - |-------------------------------------------------------------------------- - | Driver - |-------------------------------------------------------------------------- - | - | Determine how to call out to get response; values are 'curl' or 'native'. - | Only applies to v2. - | - */ - 'driver' => 'curl', - - /* - |-------------------------------------------------------------------------- - | Options - |-------------------------------------------------------------------------- - | - | Various options for the driver - | - */ - 'options' => [ - - 'curl_timeout' => 1, - 'curl_verify' => true, - - ], - - /* - |-------------------------------------------------------------------------- - | Version - |-------------------------------------------------------------------------- - | - | Set which version of ReCaptcha to use. - | - */ - - 'version' => 2, - -];