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

AbandonedArchivedLibrary[Security](/categories/security)

belomaxorka/captcha
===================

Captcha generator

v1.2.4(1y ago)62.7k↓25%MITPHPPHP &gt;=5.3.0

Since Mar 9Pushed 9mo agoCompare

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

READMEChangelog (3)Dependencies (2)Versions (4)Used By (0)

⚠️ ARCHIVED REPOSITORY
======================

[](#️-archived-repository)

This repository is now archived and no longer maintained.
---------------------------------------------------------

[](#this-repository-is-now-archived-and-no-longer-maintained)

This fork was originally created to provide bug fixes and PHP compatibility updates that were not being merged into the upstream repository. However, **as of version v1.3.0, the original repository has incorporated all necessary fixes and updates**.

🔄 Migration Notice
------------------

[](#-migration-notice)

**Please migrate to the original repository:** [gregwar/captcha](https://github.com/Gregwar/Captcha)

The upstream repository is now actively maintained and includes all the improvements that were previously only available in this fork.

Why was this fork created?
--------------------------

[](#why-was-this-fork-created)

This fork served as a temporary solution when:

- Critical bug fixes were not being merged upstream
- PHP version compatibility issues needed to be addressed
- The original repository appeared to be inactive

Current Status
--------------

[](#current-status)

✅ **Original repository is now active and maintained**
✅ **All fixes have been merged upstream**
❌ **This fork is no longer necessary**

---

**For new projects:** Use the original repository
**For existing projects:** Please plan migration to the upstream repository

Thank you to everyone who used this fork during the transition period!

---

Captcha (Based on `gregwar/Captcha`)
====================================

[](#captcha-based-on-gregwarcaptcha)

[![Captchas examples](https://camo.githubusercontent.com/117609a65864c2bce92d30af50f782c8507bed81080b20710e45f5788e53575a/687474703a2f2f677265677761722e636f6d2f63617074636861732e706e67)](https://camo.githubusercontent.com/117609a65864c2bce92d30af50f782c8507bed81080b20710e45f5788e53575a/687474703a2f2f677265677761722e636f6d2f63617074636861732e706e67)[![paypal](https://camo.githubusercontent.com/e1ff554a09e8e92bef25abc553ff05b88f45afd695877cf12f3a46558ef65b2e/68747470733a2f2f7777772e70617970616c6f626a656374732e636f6d2f656e5f55532f692f62746e2f62746e5f646f6e61746543435f4c472e676966)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YUXRLWHQSWS6L)

Requirements
============

[](#requirements)

- PHP Versions: `5.3` and above (up to `8.4`).
- PHP Extensions: `gd`, `mbstring`, `fileinfo` (enabled by default).

Installation
============

[](#installation)

It's available for [Composer](https://getcomposer.org):

```
composer require belomaxorka/captcha
```

How to migrate
==============

[](#how-to-migrate)

Just replace:

```
{
    ...
    "require": {
        "gregwar/captcha": "1.*"
    }
}
```

To:

```
{
    ...
    "require": {
        "belomaxorka/captcha": "1.*"
    }
}
```

Usage
=====

[](#usage)

You can create a captcha with the `CaptchaBuilder`:

```
