PHPackages                             ilyasapunkov/orchid-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. ilyasapunkov/orchid-captcha

ActiveLibrary

ilyasapunkov/orchid-captcha
===========================

A custom captcha package for Laravel Orchid

1.0.7(1y ago)0120MITPHPPHP ^8.4

Since Feb 26Pushed 1y ago1 watchersCompare

[ Source](https://github.com/IlyaSapunkov/orchid-captcha)[ Packagist](https://packagist.org/packages/ilyasapunkov/orchid-captcha)[ RSS](/packages/ilyasapunkov-orchid-captcha/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (9)Dependencies (4)Versions (10)Used By (0)

Orchid Captcha
==============

[](#orchid-captcha)

Orchid Captcha is a package that provides captcha functionality for the Orchid Platform in Laravel applications.

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

[](#installation)

You can install the package via composer:

```
composer require ilyasapunkov/orchid-captcha
```

Publishing Assets
-----------------

[](#publishing-assets)

After installation, you need to publish the package assets. Run the following command:

```
php artisan vendor:publish --tag=orchid-captcha
```

This will publish the following files:

- Configuration file: config/captcha.php
- JavaScript file: public/vendor/orchid-captcha/js/captcha.js
- Blade file:
    - resources/views/vendor/orchid-captcha/captcha-input.blade.php
    - resources/views/vendor/platform/auth/login.blade.php
- Language files:
    - lang/en/captcha.php
    - lang/ru/captcha.php

Or publish separately:

```
php artisan vendor:publish --tag=orchid-captcha-config
php artisan vendor:publish --tag=orchid-captcha-assets
php artisan vendor:publish --tag=orchid-captcha-views
php artisan vendor:publish --tag=orchid-captcha-lang
```

After publishing, you can modify these files to customize the behavior and appearance of the captcha in your application.

Usage
-----

[](#usage)

To use the captcha in your Orchid screens, you can add the captcha field to your layout:

```
use IlyaSapunkov\OrchidCaptcha\Screen\Fields\Captcha;

// In your screen's layout method
public function layout(): array
{
    return [
        // ... other fields
        Captcha::make('captcha')
            ->title('Verify you are human'),
    ];
}
```

Don't forget to validate the captcha in your screen's method:

```
use IlyaSapunkov\OrchidCaptcha\Rules\CaptchaRule;

public function yourMethod(Request $request)
{
    $request->validate([
        'captcha' => ['required', new CaptchaRule()],
    ]);

    // ... rest of your method
}
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance45

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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 ~2 days

Total

9

Last Release

424d ago

Major Versions

0.0.2 → 1.02025-03-11

PHP version history (2 changes)0.0.1PHP ^8.2

1.0PHP ^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/afa721122e662a1c5af2c7425dde91f13097e9853aec55278c8f14d4efa9c25f?d=identicon)[IlyaSapunkov](/maintainers/IlyaSapunkov)

---

Top Contributors

[![IlyaSapunkov](https://avatars.githubusercontent.com/u/8196008?v=4)](https://github.com/IlyaSapunkov "IlyaSapunkov (14 commits)")

### Embed Badge

![Health badge](/badges/ilyasapunkov-orchid-captcha/health.svg)

```
[![Health](https://phpackages.com/badges/ilyasapunkov-orchid-captcha/health.svg)](https://phpackages.com/packages/ilyasapunkov-orchid-captcha)
```

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[code16/sharp

Laravel Content Management Framework

78959.5k4](/packages/code16-sharp)[kompo/kompo

Laravel &amp; Vue.js FullStack Components for Rapid Application Development

11812.4k21](/packages/kompo-kompo)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)

PHPackages © 2026

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