PHPackages                             tutorials/recaptcha3 - 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. tutorials/recaptcha3

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

tutorials/recaptcha3
====================

Google recaptcha v3 integration for laravel/inertia

1.0.2(2y ago)05PHPPHP ^8.1

Since Jan 21Pushed 2y ago1 watchersCompare

[ Source](https://github.com/tutorialsam/recaptcha3)[ Packagist](https://packagist.org/packages/tutorials/recaptcha3)[ RSS](/packages/tutorials-recaptcha3/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)DependenciesVersions (4)Used By (0)

Recaptcha
---------

[](#recaptcha)

1. Install composer package

```
composer require tutorials/recaptcha3
```

2. Define service provider in `config/app.php`

```
'providers' => [
    ...
    Tutorials\Recaptcha3\RecaptchaServiceProvider::class
],
```

3. Define variables in `.env` file and put values from [recaptcha admin panel](https://www.google.com/recaptcha/admin/create)

```
RECAPTCHA_ENABLED=
RECAPTCHA_SITE_KEY=
RECAPTCHA_SECRET_KEY=

```

4. Put `recaptcha` middleware on route

```
Route::post('/login', LoginController::class)->middleware('recaptcha');
Route::post('/register', LoginController::class)->middleware('recaptcha:0.6');
```

5. Insert `@recaptcha` blade directive in the layout

```
>

        Recaptcha

        @recaptcha

```

6. Wrap your form submit logic with recaptcha validation

```
window.recaptcha('action_name_for_recaptcha_statistic').then((token) => {
    // form submition logic
    form.transform((data) => ({
        ...data,
        recaptcha_token: token, // recaptcha_token is required
    })).post(route('login'))
});
```

7. Run `php artisan view:clear` to clear the view cache

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

895d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/85644385?v=4)[amanukian](/maintainers/amanukian)[@amanukian](https://github.com/amanukian)

---

Top Contributors

[![alikmanukian](https://avatars.githubusercontent.com/u/4147821?v=4)](https://github.com/alikmanukian "alikmanukian (3 commits)")

### Embed Badge

![Health badge](/badges/tutorials-recaptcha3/health.svg)

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

###  Alternatives

[kartik-v/yii2-password

Useful password strength validation utilities for Yii Framework 2.0

761.3M17](/packages/kartik-v-yii2-password)[vitalybaev/laravel5-dkim

Laravel 5/6 package for signing outgoing messages with DKIM.

3163.1k](/packages/vitalybaev-laravel5-dkim)

PHPackages © 2026

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