imgk / captcha
Laravel 5 & 6 & 7 Captcha Package
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:package
pkg:composer/imgk/captcha
Requires
- php: ^7.2
- ext-imagick: *
- illuminate/config: ~5.0|^6.0|^7.0
- illuminate/filesystem: ~5.0|^6.0|^7.0
- illuminate/hashing: ~5.0|^6.0|^7.0
- illuminate/session: ~5.0|^6.0|^7.0
- illuminate/support: ~5.0|^6.0|^7.0
- intervention/image: ~2.5
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^8.5
README
A simple Laravel 5/6/7 service provider for including the Captcha for Laravel.
base on News\Captcha
change ext-gd to ext-imagick ,new\captcha is use php gd2 ext
imgk\captcha use php imagick ext
Preview
Installation
The Captcha Service Provider can be installed via Composer by requiring the
imgk/captcha package and setting the minimum-stability to dev (required for Laravel 5) in your
project's composer.json.
{
"require": {
"laravel/framework": "5.0.*",
"mews/captcha": "~2.0"
},
"minimum-stability": "dev"
}
or
Require this package with composer:
composer require imgk/captcha
Update your packages with composer update or install with composer install.
In Windows, you'll need to include the Imagick DLL php_imgick.dll in php.ini. And you also need include php_fileinfo.dll and php_mbstring.dll to fit the requirements of imgk/captcha's dependencies.
Usage
To use the Captcha Service Provider, you must register the provider when bootstrapping your Laravel application. There are essentially two ways to do this.
Find the providers key in config/app.php and register the Captcha Service Provider.
'providers' => [ // ... 'Imgk\Captcha\CaptchaServiceProvider', ]
for Laravel 5.1+
'providers' => [ // ... Imgk\Captcha\CaptchaServiceProvider::class, ]
Find the aliases key in config/app.php.
'aliases' => [ // ... 'Captcha' => 'Imgk\Captcha\Facades\Captcha', ]
for Laravel 5.1+
'aliases' => [ // ... 'Captcha' => Imgk\Captcha\Facades\Captcha::class, ]
Configuration
To use your own settings, publish config.
$ php artisan vendor:publish
config/captcha.php
return [ 'default' => [ 'length' => 5, 'width' => 120, 'height' => 36, 'quality' => 90, 'math' => true, //Enable Math Captcha ], // ... ];
Example Usage
Session Mode:
// [your site path]/Http/routes.php Route::any('captcha-test', function() { if (request()->getMethod() == 'POST') { $rules = ['captcha' => 'required|captcha']; $validator = validator()->make(request()->all(), $rules); if ($validator->fails()) { echo '<p style="color: #ff0000;">Incorrect!</p>'; } else { echo '<p style="color: #00ff30;">Matched :)</p>'; } } $form = '<form method="post" action="captcha-test">'; $form .= '<input type="hidden" name="_token" value="' . csrf_token() . '">'; $form .= '<p>' . captcha_img() . '</p>'; $form .= '<p><input type="text" name="captcha"></p>'; $form .= '<p><button type="submit" name="check">Check</button></p>'; $form .= '</form>'; return $form; });
Stateless Mode:
You get key and img from this url
http://localhost/captcha/api/math
and verify the captcha using this method:
//key is the one that you got from json response $rules = ['captcha' => 'required|captcha_api:'. request('key')]; $validator = validator()->make(request()->all(), $rules); if ($validator->fails()) { return response()->json([ 'message' => 'invalid captcha', ]); } else { //do the job }
Return Image
captcha();
or
Captcha::create();
Return URL
captcha_src();
or
Captcha::src('default');
Return HTML
captcha_img();
or
Captcha::img();
To use different configurations
captcha_img('flat'); Captcha::img('inverse');
etc.
Based on Intervention Image
^_^