<?php12return [3/*4* Enable or disable captchas5*/6'enabled' => env('RECAPTCHA_ENABLED', true),78/*9* API endpoint for recaptcha checks. You should not edit this.10*/11'domain' => env('RECAPTCHA_DOMAIN', 'https://www.google.com/recaptcha/api/siteverify'),1213/*14* Use a custom secret key, we use our public one by default15*/16'secret_key' => env('RECAPTCHA_SECRET_KEY', '6LcJcjwUAAAAALOcDJqAEYKTDhwELCkzUkNDQ0J5'),17'_shipped_secret_key' => '6LcJcjwUAAAAALOcDJqAEYKTDhwELCkzUkNDQ0J5',1819/*20* Use a custom website key, we use our public one by default21*/22'website_key' => env('RECAPTCHA_WEBSITE_KEY', '6LcJcjwUAAAAAO_Xqjrtj9wWufUpYRnK6BW8lnfn'),23'_shipped_website_key' => '6LcJcjwUAAAAAO_Xqjrtj9wWufUpYRnK6BW8lnfn',2425/*26* Domain verification is enabled by default and compares the domain used when solving the captcha27* as public keys can't have domain verification on google's side enabled (obviously).28*/29'verify_domain' => true,30];313233