PHPackages                             bhanwarpsrathore/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. [Security](/categories/security)
4. /
5. bhanwarpsrathore/recaptcha

AbandonedArchivedLibrary[Security](/categories/security)

bhanwarpsrathore/recaptcha
==========================

reCaptcha Plugin for cakephp 2

101PHP

Since Jun 26Pushed 3y ago1 watchersCompare

[ Source](https://github.com/bhanwarpsrathore/reCaptcha)[ Packagist](https://packagist.org/packages/bhanwarpsrathore/recaptcha)[ RSS](/packages/bhanwarpsrathore-recaptcha/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

reCaptcha Plugin for cakephp 2
==============================

[](#recaptcha-plugin-for-cakephp-2)

Description
===========

[](#description)

reCAPTCHA is a free CAPTCHA service that protect websites from spam and abuse.

\#Usage First, register keys for your site at [here](https://www.google.com/recaptcha/admin)

Then,To use the recaptcha plugin its required to include the following two lines in your `/app/Config/bootstrap.php` file.

```
Configure::write('Recaptcha.publicKey', 'public-api-key');
Configure::write('Recaptcha.privateKey', 'private-api-key');
```

Controllers that will be using recaptcha require the Recaptcha Component to be included. Through inclusion of the component, the helper is automatically made available to your views.

```
public $components = array('Recaptcha.Recaptcha');
```

In the view simply call the helpers display() method to render the recaptcha input:

```
echo $this->Recaptcha->display();
```

To check the result simply do something like this in your controller:

```
if ($this->request->is('post')) {
    if ($this->Recaptcha->verify()) {
        // verified
    } else {
        // display the error
    }
}
```

###  Health Score

14

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/17901097?v=4)[Pradeep Singh](/maintainers/bhanwarpsrathore)[@bhanwarpsrathore](https://github.com/bhanwarpsrathore)

---

Top Contributors

[![bhanwarpsrathore](https://avatars.githubusercontent.com/u/17901097?v=4)](https://github.com/bhanwarpsrathore "bhanwarpsrathore (30 commits)")

---

Tags

cakephp-pluginrecaptcharecaptcha-plugin

### Embed Badge

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

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

###  Alternatives

[mews/purifier

Laravel 5/6/7/8/9/10 HtmlPurifier Package

2.0k18.7M143](/packages/mews-purifier)[paragonie/ecc

PHP Elliptic Curve Cryptography library

24820.0k37](/packages/paragonie-ecc)

PHPackages © 2026

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