├── LICENSE ├── composer.json ├── readme.md └── src ├── Captcha ├── Captcha.php ├── Code │ ├── CodeInterface.php │ └── SimpleCode.php ├── Generator │ ├── AbstractGenerator.php │ ├── GeneratorInterface.php │ └── GeneratorWaves.php └── Storage │ ├── SessionStorage.php │ └── StorageInterface.php ├── Controllers └── CaptchaController.php ├── Facades └── Captcha.php ├── Providers └── CaptchaServiceProvider.php ├── config └── bone │ └── captcha.php └── resources ├── fonts └── IndiraK.ttf ├── lang └── vendor │ └── bone │ ├── ar │ └── captcha.php │ ├── de │ └── captcha.php │ ├── en │ └── captcha.php │ ├── es │ └── captcha.php │ ├── fa │ └── captcha.php │ ├── fr │ └── captcha.php │ ├── hi │ └── captcha.php │ ├── id │ └── captcha.php │ ├── it │ └── captcha.php │ ├── ja │ └── captcha.php │ ├── ko │ └── captcha.php │ ├── nl │ └── captcha.php │ ├── pt │ └── captcha.php │ ├── ru │ └── captcha.php │ ├── tr │ └── captcha.php │ ├── uk │ └── captcha.php │ └── zh │ └── captcha.php └── views └── vendor └── bone └── captcha └── image.blade.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/composer.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/readme.md -------------------------------------------------------------------------------- /src/Captcha/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Captcha.php -------------------------------------------------------------------------------- /src/Captcha/Code/CodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Code/CodeInterface.php -------------------------------------------------------------------------------- /src/Captcha/Code/SimpleCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Code/SimpleCode.php -------------------------------------------------------------------------------- /src/Captcha/Generator/AbstractGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Generator/AbstractGenerator.php -------------------------------------------------------------------------------- /src/Captcha/Generator/GeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Generator/GeneratorInterface.php -------------------------------------------------------------------------------- /src/Captcha/Generator/GeneratorWaves.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Generator/GeneratorWaves.php -------------------------------------------------------------------------------- /src/Captcha/Storage/SessionStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Storage/SessionStorage.php -------------------------------------------------------------------------------- /src/Captcha/Storage/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Captcha/Storage/StorageInterface.php -------------------------------------------------------------------------------- /src/Controllers/CaptchaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Controllers/CaptchaController.php -------------------------------------------------------------------------------- /src/Facades/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Facades/Captcha.php -------------------------------------------------------------------------------- /src/Providers/CaptchaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/Providers/CaptchaServiceProvider.php -------------------------------------------------------------------------------- /src/config/bone/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/config/bone/captcha.php -------------------------------------------------------------------------------- /src/resources/fonts/IndiraK.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/fonts/IndiraK.ttf -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/ar/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/ar/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/de/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/de/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/en/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/en/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/es/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/es/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/fa/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/fa/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/fr/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/fr/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/hi/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/hi/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/id/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/id/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/it/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/it/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/ja/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/ja/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/ko/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/ko/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/nl/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/nl/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/pt/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/pt/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/ru/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/ru/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/tr/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/tr/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/uk/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/uk/captcha.php -------------------------------------------------------------------------------- /src/resources/lang/vendor/bone/zh/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/lang/vendor/bone/zh/captcha.php -------------------------------------------------------------------------------- /src/resources/views/vendor/bone/captcha/image.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoshev/laravel-captcha/HEAD/src/resources/views/vendor/bone/captcha/image.blade.php --------------------------------------------------------------------------------