PHPackages                             teepluss/recaptcha - 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. teepluss/recaptcha

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

teepluss/recaptcha
==================

Google No CAPTCHA reCAPTCHA for Laravel.

0.1(11y ago)3118MITPHPPHP &gt;=5.4.0

Since Jan 14Pushed 10y ago1 watchersCompare

[ Source](https://github.com/teepluss/laravel-recaptcha)[ Packagist](https://packagist.org/packages/teepluss/recaptcha)[ Docs](https://github.com/teepluss/laravel-recaptcha)[ RSS](/packages/teepluss-recaptcha/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

Laravel reCAPTCHA.
------------------

[](#laravel-recaptcha)

Are you a robot? Introducing “No CAPTCHA reCAPTCHA”

[![reCAPTCHA from Google](https://camo.githubusercontent.com/f237cecf9327da1230978c1c20db31652c77bcc5f7f28c9967225d07602b2a8a/68747470733a2f2f7777772e676f6f676c652e636f6d2f7265636170746368612f696e74726f2f696d616765732f6865726f2d7265636170746368612d64656d6f2e676966)](https://www.google.com/recaptcha/intro/index.html)

### Installation

[](#installation)

- [Recaptcha on Packagist](https://packagist.org/packages/teepluss/recaptcha)
- [Recaptcha on GitHub](https://github.com/teepluss/laravel-recaptcha)

To get the lastest version of Recaptcha simply require it in your `composer.json` file.

```
"teepluss/recaptcha": "dev-master"

```

You'll then need to run `composer install` to download it and have the autoloader updated.

Once reCAPTCHA is installed you need to register the service provider with the application. Open up `app/config/app.php` and find the `providers` key.

```
'providers' => array(
    'Teepluss\Recaptcha\RecaptchaServiceProvider'
)

```

Publish config using artisan CLI.

```
php artisan config:publish teepluss/recaptcha

```

Publish view using artisan CLI.

```
php artisan view:publish teepluss/recaptcha
```

Usage
-----

[](#usage)

The first you need to config key and secret that get from [Google](https://www.google.com/recaptcha/intro/index.html)

### Display captcha on view

[](#display-captcha-on-view)

```
echo Recaptcha::render();

// or

echo Form::recaptcha();
```

### Verify captcha from the server

[](#verify-captcha-from-the-server)

```
$v = Validator::make(
    Input::all(),
    array(
        'g-recaptcha-response' => 'required|recaptcha'
    ),
    array(
        'g-recaptcha-response.recaptcha' => 'Please verify that you are not a robot.'
    )
);

if ($v->fails())
{
    var_dump($v->messages());
}
```

Support or Contact
------------------

[](#support-or-contact)

If you have some problem, Contact

[![Support via PayPal](https://camo.githubusercontent.com/1c4c2a63b268ab949717893dda9628735444f61b8eb8eece283a534338b5b0e5/68747470733a2f2f7261776769746875622e636f6d2f63687269732d2d2d2f446f6e6174696f6e2d4261646765732f6d61737465722f70617970616c2e6a706567)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9GEC8J7FAG6JA)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

4134d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/98f73b54567183f49c41533fc0c05cfffccdf5ed4f0351e3065d62d14779d26f?d=identicon)[teepluss](/maintainers/teepluss)

---

Tags

laravelrecaptchacaptchanocaptcha

### Embed Badge

![Health badge](/badges/teepluss-recaptcha/health.svg)

```
[![Health](https://phpackages.com/badges/teepluss-recaptcha/health.svg)](https://phpackages.com/packages/teepluss-recaptcha)
```

###  Alternatives

[anhskohbo/no-captcha

No CAPTCHA reCAPTCHA For Laravel.

1.8k8.5M33](/packages/anhskohbo-no-captcha)[josiasmontag/laravel-recaptchav3

Recaptcha V3 for Laravel package

2641.6M2](/packages/josiasmontag-laravel-recaptchav3)[buzz/laravel-google-captcha

Google captcha for Laravel

2071.1M2](/packages/buzz-laravel-google-captcha)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
