Skip to content

Commit

Permalink
Fixes as per latest update
Browse files Browse the repository at this point in the history
  • Loading branch information
mjducharme committed Aug 24, 2019
1 parent f8981f2 commit cc5210f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ RECAPTCHA_SECRET=secret
Run vendor publish to add the captcha.php file to config:

```
php artisan vendor:publish --provider=Anam\Captcha\ServiceProvider\CaptchaServiceProvider
php artisan vendor:publish --tag=CaptchaConfig
```

By default, The package will try to load keys from environment. However, you can set them manually:
Expand Down
4 changes: 2 additions & 2 deletions src/ServiceProvider/CaptchaServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public function register()
public function boot()
{
$this->publishes([
__DIR__.'/../../config/captcha.php' => config_path('captcha.php'),
]);
__DIR__.'/../config/captcha.php' => config_path('captcha.php'),
], 'CaptchaConfig');

Blade::directive('captcha', function ($siteKey = null) {

Expand Down
File renamed without changes.

0 comments on commit cc5210f

Please sign in to comment.