Skip to content

Commit 6cbd523

Browse files
committed
UPDATED
1 parent 155d8b0 commit 6cbd523

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $ composer require ryandeng/googlerecaptcha
3434
If your Laravel framework version <= 5.4, please register the service provider in your config file: /config/app.php, otherwise please go to step 3.
3535

3636
```
37-
Ryandadeng\Securepayframe\SecurePayFrameServiceProvider::class
37+
RyanDeng\GoogleReCaptcha\Providers\GoogleReCaptchaV3ServiceProvider::class
3838
```
3939

4040
If your Laravel framework version is >= 5.5, just run the following command to publish views and config.
@@ -106,14 +106,14 @@ $ip: optional
106106
For some users, they might store the config details in their own storage e.g database. You can create your own class and implement:
107107

108108
```
109-
RyanDeng\GoogleReCaptcha\Interfaces\ReCaptchaConfigInterface
109+
RyanDeng\GoogleReCaptcha\Interfaces\ReCaptchaConfigV3Interface
110110
```
111111

112112
Remember to register your implementation, e.g.
113113

114114
``` php
115115
$this->app->bind(
116-
ReCaptchaConfigInterface::class,
116+
ReCaptchaConfigV3Interface::class,
117117
YourOwnCustomImplementation::class
118118
);
119119
```

0 commit comments

Comments
 (0)