Package Data | |
---|---|
Maintainer Username: | yhbyun |
Maintainer Contact: | yonghunbyun@gmail.com (YongHun Byun) |
Package Create Date: | 2016-07-11 |
Package Last Update: | 2021-05-11 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:12:29 |
Package Statistics | |
---|---|
Total Downloads: | 1,070 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 9 |
Total Open Issues: | 0 |
A simple laravel 5 wrapper package for Securimage.
Add the package to your composer.json
by running:
composer require yhbyun/laravel-securimage
When it's installed, add it to the providers list in config/app.php
Yhbyun\Securimage\SecurimageServiceProvider::class,
Publish assets to your public folder
$ php artisan vendor:publish --provider="Yhbyun\Securimage\SecurimageServiceProvider"
config/securimage.php
return [
'length' => env('SECURIMAGE_LENGTH', 6),
'width' => env('SECURIMAGE_WIDTH', 215),
'height' => env('SECURIMAGE_HEIGHT', 80),
'perturbation' => env('SECURIMAGE_PERTURBATION', .85),
'case_sensitive' => env('SECURIMAGE_CASE_SENSITIVE', false),
'num_lines' => env('SECURIMAGE_NUM_LINES', 0),
'charset' => env('SECURIMAGE_CHARSET', 'ABCDEFGHKLMNPRSTUVWYZabcdefghklmnprstuvwyz23456789'),
'signature' => env('SECURIMAGE_SIGNATURE', 'ecplaza'),
'show_text_input' => env('SECURIMAGE_SHOW_TEXT_INPUT', false),
];
app/Http/routes.php
Route::any('captcha-test', function()
{
if (Request::getMethod() == 'POST')
{
$rules = ['captcha' => 'required|captcha'];
$validator = Validator::make(Input::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><button type="submit" name="check">Check</button></p>';
$form .= '</form>';
return $form;
});
$ phpunit --stderr