fruitcakestudio/laravel-recaptcha
最新稳定版本:v0.1.0
Composer 安装命令:
composer require fruitcakestudio/laravel-recaptcha
包简介
Laravel integration for reCAPTCHA library
README 文档
README
This is a Laravel integration package for https://github.com/fruitcakestudio/php-recaptcha
Installation
Require this package with composer:
composer require fruitcakestudio/laravel-recaptcha
Laravel integration
You can use the Laravel ServiceProvider to make use of the Laravel Configuration and Request object.
Add the ServiceProvider to your list of ServiceProviders:
'FruitcakeStudio\ReCaptcha\Support\Laravel\ServiceProvider',
Publish the Configuration and edit the sitekey, secret and language.
php artisan config:publish fruitcakestudio/laravel-recaptcha
If you want to use the Facade, add that too.
'ReCaptcha' => 'FruitcakeStudio\ReCaptcha\Support\Laravel\Facade',
This will register the ReCaptcha instance, preconfigured with your configuration and the Request object.
// Using the IoC container $captcha = App::make('recaptcha'); $captcha->getScript(); // Using the Facade ReCaptcha::verifyRequest();
You can also add the ReCaptcha as a rule to the validator:
$validator = Validator::make(Input::all(), array( 'g-recaptcha-response' => 'required|recaptcha' ));
统计信息
- 总下载量: 21.44k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-15