PHPackages                             rubensrocha/h-captcha - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. rubensrocha/h-captcha

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

rubensrocha/h-captcha
=====================

hCaptcha For Laravel

4.3.3(5y ago)07MITPHPPHP &gt;=5.5.5

Since Apr 13Pushed 5y ago1 watchersCompare

[ Source](https://github.com/rubensrocha/h-captcha)[ Packagist](https://packagist.org/packages/rubensrocha/h-captcha)[ RSS](/packages/rubensrocha-h-captcha/feed)WikiDiscussions master Synced today

READMEChangelog (4)Dependencies (3)Versions (11)Used By (0)

hCaptcha
========

[](#hcaptcha)

Project based on [laravel-reCAPTCHA](https://github.com/Dylanchouxd/laravel-reCAPTCHA) development.

Installation
------------

[](#installation)

```
composer require rubensrocha/h-captcha

```

Laravel 5 and above
-------------------

[](#laravel-5-and-above)

### Setup

[](#setup)

In `app/config/app.php` add the following :

1- The ServiceProvider to the providers array :

```
Rubensrocha\HCaptcha\HCaptchaServiceProvider::class,
```

2- The class alias to the aliases array :

```
'HCaptcha' => Rubensrocha\HCaptcha\Facades\HCaptcha::class,
```

3- Publish the config file

```
php artisan vendor:publish --provider="Rubensrocha\HCaptcha\HCaptchaServiceProvider"

```

### Configuration

[](#configuration)

Add `HCAPTCHA_SECRET` and `HCAPTCHA_SITEKEY` in **.env** file :

```
HCAPTCHA_SECRET=secret-key
HCAPTCHA_SITEKEY=site-key

```

(You can obtain them from [here](https://docs.hcaptcha.com/api#getapikey))

### Usage

[](#usage)

#### Init js source

[](#init-js-source)

With default options :

```
 {!! HCaptcha::renderJs() !!}
```

With [language support](https://docs.hcaptcha.com/configuration) or [onloadCallback](https://docs.hcaptcha.com/configuration) option :

```
 {!! HCaptcha::renderJs('fr', true, 'recaptchaCallback') !!}
```

#### Display reCAPTCHA

[](#display-recaptcha)

Default widget :

```
{!! HCaptcha::display() !!}
```

With [custom attributes](https://docs.hcaptcha.com/configuration#themes) (theme, size, callback ...) :

```
{!! HCaptcha::display(['data-theme' => 'dark']) !!}
```

Invisible reCAPTCHA using a [submit button](https://docs.hcaptcha.com/configuration#themes):

```
{!! HCaptcha::displaySubmit('my-form-id', 'submit now!', ['data-theme' => 'dark']) !!}
```

Notice that the id of the form is required in this method to let the autogenerated callback submit the form on a successful captcha verification.

#### Validation

[](#validation)

Add `'h-captcha-response' => 'required|captcha'` to rules array :

```
$validate = Validator::make(Input::all(), [
	'h-captcha-response' => 'required|HCaptcha'
]);
```

##### Custom Validation Message

[](#custom-validation-message)

Add the following values to the `custom` array in the `validation` language file :

```
'custom' => [
    'h-captcha-response' => [
        'required' => 'Please verify that you are not a robot.',
        'captcha' => 'Captcha error! try again later or contact site admin.',
    ],
],
```

Then check for captcha errors in the `Form` :

```
@if ($errors->has('h-captcha-response'))

        {{ $errors->first('h-captcha-response') }}

@endif
```

### Testing

[](#testing)

When using the [Laravel Testing functionality](http://laravel.com/docs/5.5/testing), you will need to mock out the response for the captcha form element.

So for any form tests involving the captcha, you can do this by mocking the facade behavior:

```
// prevent validation error on captcha
HCaptcha::shouldReceive('verifyResponse')
    ->once()
    ->andReturn(true);

// provide hidden input for your 'required' validation
HCaptcha::shouldReceive('display')
    ->zeroOrMoreTimes()
    ->andReturn('');
```

You can then test the remainder of your form as normal.

When using HTTP tests you can add the `h-captcha-response` to the request body for the 'required' validation:

```
// prevent validation error on captcha
HCaptcha::shouldReceive('verifyResponse')
    ->once()
    ->andReturn(true);

// POST request, with request body including g-recaptcha-response
$response = $this->json('POST', '/register', [
    'h-captcha-response' => '1',
    'name' => 'John',
    'email' => 'john@example.com',
    'password' => '123456',
    'password_confirmation' => '123456',
]);
```

Without Laravel
---------------

[](#without-laravel)

Checkout example below:

```
