/recaptcha

Primary LanguagePHPMozilla Public License 2.0MPL-2.0

Laravel Recaptcha

Build Status PHP from Packagist Latest Version License

Installation

Require this package, with Composer, in the root directory of your project.

$ composer require artisanry/recaptcha

Configuration

Laravel Recaptcha supports optional configuration.

To get started, you'll need to publish all vendor assets:

$ php artisan vendor:publish --provider="Artisanry\Recaptcha\RecaptchaServiceProvider"

This will create a config/recaptcha.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.

Usage

Validate a captcha from a request
$this->validate($request, ['g-recaptcha-response' => 'required|recaptcha']);
Render captcha
{!! app('recaptcha')->render() !!}
Render captcha (with laravelcollective/html)
{!! Form::recaptcha() !!}

Testing

$ phpunit

Security

If you discover a security vulnerability within this package, please send an e-mail to hello@basecode.sh. All security vulnerabilities will be promptly addressed.

Credits

This project exists thanks to all the people who contribute.

License

Mozilla Public License Version 2.0 (MPL-2.0).