yhbyun / laravel-securimage by yhbyun

Laravel 5 Securimage helper
1,066
3
2
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-04-17 15:14:08
Package Statistics
Total Downloads: 1,066
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 3
Total Watchers: 2
Total Forks: 9
Total Open Issues: 0

Laravel 5 Securimage helper

Build Status

A simple laravel 5 wrapper package for Securimage.

preview

Installation

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"

Configuration

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),
];

Example Usage

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;
});

Testing

$ phpunit --stderr