2017 © Pedro Peláez
 

package bh_captcha

Laravel 5 Captcha Package

image

linnenn/bh_captcha

Laravel 5 Captcha Package

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 21 Versions
  • 3 % Grown

The README.md

Captcha for Laravel 5

fork form news\cpatcha thanks anyway, (*1)

Build Status Scrutinizer Code Quality, (*2)

A simple Laravel 5 service provider for including the Captcha for Laravel 5., (*3)

for Laravel 4 Captcha for Laravel Laravel 4, (*4)

Preview

Preview, (*5)

Installation

The Captcha Service Provider can be installed via Composer by requiring the linnenn/bh_captcha package and setting the minimum-stability to dev (required for Laravel 5) in your project's composer.json., (*6)

{
    "require": {
        "laravel/framework": "5.0.*",
        "linnenn/bh_captcha": "~2.0"
    },
    "minimum-stability": "dev"
}

or, (*7)

Require this package with composer:, (*8)

composer require linnenn/bh_captcha

Update your packages with composer update or install with composer install., (*9)

In Windows, you'll need to include the GD2 DLL php_gd2.dll in php.ini. And you also need include php_fileinfo.dll and php_mbstring.dll to fit the requirements of linnenn/bh_captcha's dependencies., (*10)

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., (*11)

Find the providers key in config/app.php and register the Captcha Service Provider., (*12)

    'providers' => [
        // ...
        'linnenn\Captcha\CaptchaServiceProvider',
    ]

for Laravel 5.1+, (*13)

    'providers' => [
        // ...
        linnenn\Captcha\CaptchaServiceProvider::class,
    ]

Find the aliases key in config/app.php., (*14)

    'aliases' => [
        // ...
        'Captcha' => 'linnenn\Captcha\Facades\Captcha',
    ]

for Laravel 5.1+, (*15)

    'aliases' => [
        // ...
        'Captcha' => linnenn\Captcha\Facades\Captcha::class,
    ]

Configuration

To use your own settings, publish config., (*16)

$ php artisan vendor:publish, (*17)

config/captcha.php, (*18)

return [
    'default'   => [
        'length'    => 5,
        'width'     => 120,
        'height'    => 36,
        'quality'   => 90,
    ],
    // ...
];

Example Usage


// [your site path]/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><input type="text" name="captcha"></p>'; $form .= '<p><button type="submit" name="check">Check</button></p>'; $form .= '</form>'; return $form; });

Return Image

captcha();

or, (*19)

Captcha::create();

Return URL

captcha_src();

or, (*20)

Captcha::src();

Return HTML

captcha_img();

or, (*21)

Captcha::img();

To use different configurations

captcha_img('flat');

Captcha::img('inverse');

etc., (*22)

Based on Intervention Image, (*23)

^_^, (*24)

The Versions

17/04 2018
23/03 2018
23/03 2018
23/03 2018
23/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018

V1.0.6-stable

1.0.6.0 https://github.com/linnenn/bh_captcha

Laravel 5 Captcha Package

  Sources   Download

MIT

The Requires

 

The Development Requires

captcha laravel5 security laravel5 captcha

22/03 2018

dev-master

9999999-dev https://github.com/linnenn/bh_captcha

Laravel 5 Captcha Package

  Sources   Download

MIT

The Requires

 

The Development Requires

captcha laravel5 security laravel5 captcha

22/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018
22/03 2018