Skip to content

Commit 6141e8a

Browse files
FIX config file
1 parent a413451 commit 6141e8a

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

config/google-recaptcha-v3.php

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,48 @@
11
<?php
22

33
return [
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
];

0 commit comments

Comments
 (0)