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

ActiveLibrary

adair-creative/recaptcha
========================

Tools for quick Google ReCAPTCHA implementation

1.7(4y ago)0286PHP

Since Feb 20Pushed 4y ago2 watchersCompare

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

READMEChangelog (7)DependenciesVersions (11)Used By (0)

SilverStripe Easy ReCAPTCHA
===========================

[](#silverstripe-easy-recaptcha)

About
-----

[](#about)

Allows for easy and quick implementation of the Google ReCAPTCHA v2.0

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

[](#installation)

```
composer require adair-creative/recaptcha

```

Guide
-----

[](#guide)

config.yml

```
AdairCreative\ReCAPTCHA:
    secret_key: [your-secret-key]
    app_key: [your-public-app-key]
```

PageController.php

```
protected function init() {
	...
	ReCAPTCHA::importJavascript();
	ReCAPTCHA::importCSS();
	...
}
```

YourForm.php

```
public function __construct(ContentController $controller, string $name) {
	$fields = new FieldList([
		TextField::create("Message", "")
	]);

	ReCAPTCHA::addField($fields);

	return parent::__construct(
		$controller,
		$name,
		$fields,
		new FieldList([]),
		new FieldList([
		"Message"
		])
	);
}
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 93.8% 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.

###  Release Activity

Cadence

Every ~96 days

Recently: every ~22 days

Total

7

Last Release

1696d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/50ea9b17ec1418ae7c6715077e5c6d06a5080c4345574488dae955efa0a9b79c?d=identicon)[jessedsolomon](/maintainers/jessedsolomon)

---

Top Contributors

[![jessedsolomon](https://avatars.githubusercontent.com/u/43144345?v=4)](https://github.com/jessedsolomon "jessedsolomon (15 commits)")[![clintLandrum](https://avatars.githubusercontent.com/u/962010?v=4)](https://github.com/clintLandrum "clintLandrum (1 commits)")

### Embed Badge

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

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

PHPackages © 2026

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