├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── AbstractAdapter.php ├── AbstractWord.php ├── AdapterInterface.php ├── Dumb.php ├── Exception ├── DomainException.php ├── ExceptionInterface.php ├── ExtensionNotLoadedException.php ├── ImageNotLoadableException.php ├── InvalidArgumentException.php ├── NoFontProvidedException.php └── RuntimeException.php ├── Factory.php ├── Figlet.php ├── Image.php └── ReCaptcha.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/AbstractAdapter.php -------------------------------------------------------------------------------- /src/AbstractWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/AbstractWord.php -------------------------------------------------------------------------------- /src/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/AdapterInterface.php -------------------------------------------------------------------------------- /src/Dumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Dumb.php -------------------------------------------------------------------------------- /src/Exception/DomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Exception/DomainException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/ExtensionNotLoadedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Exception/ExtensionNotLoadedException.php -------------------------------------------------------------------------------- /src/Exception/ImageNotLoadableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Exception/ImageNotLoadableException.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/NoFontProvidedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Exception/NoFontProvidedException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Figlet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Figlet.php -------------------------------------------------------------------------------- /src/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/Image.php -------------------------------------------------------------------------------- /src/ReCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-captcha/HEAD/src/ReCaptcha.php --------------------------------------------------------------------------------