File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 11<?php
22
33return [
4+ /*
5+ |--------------------------------------------------------------------------
6+ | Enabled
7+ |--------------------------------------------------------------------------
8+ |
9+ | This option controls whether Google reCAPTCHA v3 is enabled.
10+ | When disabled, the validation will be skipped.
11+ |
12+ */
413 'enabled ' => null ,
514
15+ /*
16+ |--------------------------------------------------------------------------
17+ | Site Key
18+ |--------------------------------------------------------------------------
19+ |
20+ | Your Google reCAPTCHA v3 site key.
21+ | You can get this from https://www.google.com/recaptcha/admin
22+ |
23+ */
624 'site_key ' => null ,
725
26+ /*
27+ |--------------------------------------------------------------------------
28+ | Secret Key
29+ |--------------------------------------------------------------------------
30+ |
31+ | Your Google reCAPTCHA v3 secret key.
32+ | You can get this from https://www.google.com/recaptcha/admin
33+ |
34+ */
835 'secret_key ' => null ,
936
37+ /*
38+ |--------------------------------------------------------------------------
39+ | Score Threshold
40+ |--------------------------------------------------------------------------
41+ |
42+ | The minimum score threshold for the reCAPTCHA validation.
43+ | Google reCAPTCHA v3 returns a score (1.0 is very likely a good interaction,
44+ | 0.0 is very likely a bot). Default is 0.5.
45+ |
46+ */
1047 'score_threshold ' => null ,
1148];
You can’t perform that action at this time.
0 commit comments