| Package Data | |
|---|---|
| Maintainer Username: | liujingyu | 
| Maintainer Contact: | jingyu525@gmail.com (liujingyu) | 
| Package Create Date: | 2017-06-27 | 
| Package Last Update: | 2017-10-27 | 
| Language: | PHP | 
| License: | MIT | 
| Last Refreshed: | 2025-10-27 15:01:22 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 4,338 | 
| Monthly Downloads: | 2 | 
| Daily Downloads: | 0 | 
| Total Stars: | 2 | 
| Total Watchers: | 1 | 
| Total Forks: | 1 | 
| Total Open Issues: | 0 | 
captcha-repository for laravel or lumen
Install package composer require "superman2014/captcha-repository:1.0.x@dev"
Open config/app.php and register the required service provider above your application providers.
'providers' => [
    Superman2014\CaptchaRepository\CaptchaServiceProvider::class,
]
If you'd like to make configuration changes in the configuration file you can pubish it with the following Aritsan command:
php artisan vendor:publish --provider="Superman2014\CaptchaRepository\CaptchaServiceProvider"
Open bootstrap/app.php and register the required service provider.
$app->register(Superman2014\CaptchaRepository\CaptchaServiceProvider::class);