Skip to content

Commit 96c3293

Browse files
committed
wording
1 parent 7c9e648 commit 96c3293

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ return [
3939
| @see: https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key
4040
|
4141
*/
42-
'turnstile_site_key' => env('TRUNSTILE_SITE_KEY', null),
42+
'turnstile_site_key' => env('TURNSTILE_SITE_KEY', null),
4343

44-
'turnstile_secret_key' => env('TRUNSTILE_SECRET_KEY', null),
44+
'turnstile_secret_key' => env('TURNSTILE_SECRET_KEY', null),
4545

4646
/*
4747
|--------------------------------------------------------------------------
@@ -71,11 +71,11 @@ php artisan vendor:publish --tag="turnstile-views"
7171
## Turnstile Keys
7272
To be able to use __Cloudflare Turnstile__, you need to get the `SiteKey`, and the `SecretKey` from your [Cloudflare dashboard](https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key)
7373

74-
After Generating the __keys__, use `TRUNSTILE_SITE_KEY`, and `TRUNSTILE_SECRET_KEY` in your `.env` file
74+
After Generating the __keys__, use `TURNSTILE_SITE_KEY`, and `TURNSTILE_SECRET_KEY` in your `.env` file
7575

7676
```.env
77-
TRUNSTILE_SITE_KEY=2x00000000000000000000AB
78-
TRUNSTILE_SECRET_KEY=2x0000000000000000000000000000000AA
77+
TURNSTILE_SITE_KEY=2x00000000000000000000AB
78+
TURNSTILE_SECRET_KEY=2x0000000000000000000000000000000AA
7979
```
8080

8181
If you want to test the widget, you can use the [Dummy site keys and secret keys](https://developers.cloudflare.com/turnstile/reference/testing/) that Cloudflare provides.

config/turnstile.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
| @see: https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key
1515
|
1616
*/
17-
'turnstile_site_key' => env('TRUNSTILE_SITE_KEY', null),
17+
'turnstile_site_key' => env('TURNSTILE_SITE_KEY', null),
1818

19-
'turnstile_secret_key' => env('TRUNSTILE_SECRET_KEY', null),
19+
'turnstile_secret_key' => env('TURNSTILE_SECRET_KEY', null),
2020

2121
/*
2222
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)