eleme/easycaptcha

PHP captch library

Installs: 8 761

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/eleme/easycaptcha

v0.2.2 2015-06-07 14:53 UTC

This package is not auto-updated.

Last update: 2025-10-11 21:59:06 UTC


README

Build Status Scrutinizer Code Quality Code Coverage Stable Status

php captcha lib.

Install With Composer:

"require": {
    "eleme/easycaptcha": "~0.1"
}

Example

<?php

use Eleme\EasyCaptcha\Phrase\Factory as PhraseFactory;
use Eleme\EasyCaptcha\Factory;

require __DIR__.'/../vendor/autoload.php';
header('Content-Type: image/jpeg');
$factory = new Factory();
$phrase = new PhraseFactory();
$factory->render($phrase->build());

Demo

git clone http://github.com/thbourlove/easycaptcha
cd easycaptcha
make build
make demo