PHPackages                             tsoftware/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. [Utility &amp; Helpers](/categories/utility)
4. /
5. tsoftware/captcha

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

tsoftware/captcha
=================

A simple and fast captcha generator

v1.0(10y ago)011MITPHPPHP &gt;=5.5.9

Since Dec 23Pushed 10y ago1 watchersCompare

[ Source](https://github.com/tsoftware-org/captcha)[ Packagist](https://packagist.org/packages/tsoftware/captcha)[ RSS](/packages/tsoftware-captcha/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

\##Introduction Tsoftware\\Captcha is a captcha generator in Laravel 5!

\##Useage First:

```
composer require tsoftware/captcha
```

in app/config.php add

```
  'providers' => [
    Tsoftware\Captcha\CaptchaProvider::class,
  ]

  'aliases' => [
    'Captcha' => Tsoftware\Captcha\CaptchaFacade::class,
  ]
```

for emaple in app/Http/Controllers/Auth/AuthController.php file

```
  use Captcha;

  public function getCaptcha()
  {
    return Captcha::output('_captcha', 100, 40, 4);
  }

  protected function validator(array $data)
  {
        $validator = Validator::make($data, [
            'name' => 'required|min:5|max:20',
            'email' => 'required|email|max:255|unique:users',
            'password' => 'required|confirmed|min:5',
            'captcha' => 'required',
        ]);

	    $validator->after(function($validator) use ($data){
			if (!Captcha::check($data['captcha']))
			{
				$validator->errors()->add('captcha', 'Wrong captcha code!');
			}
	    });

	    return $validator;
  }

```

\##FeedBack

- Mail()
- QQ: 1065317290
- Blog: [Yantao.Info](http://www.yantao.info)
- GitHub: [tsoftware-org/captcha](https://github.com/tsoftware-org/captcha)

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

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

Unknown

Total

1

Last Release

3842d ago

### Community

Maintainers

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

### Embed Badge

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

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[illuminate/http

The Illuminate Http package.

11937.2M6.6k](/packages/illuminate-http)[illuminate/routing

The Illuminate Routing package.

1239.0M2.9k](/packages/illuminate-routing)[illuminate/pipeline

The Illuminate Pipeline package.

9348.3M267](/packages/illuminate-pipeline)[flarum/core

Delightfully simple forum software.

201.4M2.2k](/packages/flarum-core)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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