File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ $ composer require ryandeng/googlerecaptcha
34
34
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.
35
35
36
36
```
37
- Ryandadeng\Securepayframe\SecurePayFrameServiceProvider ::class
37
+ RyanDeng\GoogleReCaptcha\Providers\GoogleReCaptchaV3ServiceProvider ::class
38
38
```
39
39
40
40
If your Laravel framework version is >= 5.5, just run the following command to publish views and config.
@@ -106,14 +106,14 @@ $ip: optional
106
106
For some users, they might store the config details in their own storage e.g database. You can create your own class and implement:
107
107
108
108
```
109
- RyanDeng\GoogleReCaptcha\Interfaces\ReCaptchaConfigInterface
109
+ RyanDeng\GoogleReCaptcha\Interfaces\ReCaptchaConfigV3Interface
110
110
```
111
111
112
112
Remember to register your implementation, e.g.
113
113
114
114
``` php
115
115
$this->app->bind(
116
- ReCaptchaConfigInterface ::class,
116
+ ReCaptchaConfigV3Interface ::class,
117
117
YourOwnCustomImplementation::class
118
118
);
119
119
```
You can’t perform that action at this time.
0 commit comments