https://github.com/thinhbuzz/laravel-h-captcha-examples
https://github.com/thinhbuzz/laravel-h-captcha-examples
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/thinhbuzz/laravel-h-captcha-examples
- Owner: thinhbuzz
- Created: 2020-04-21T14:33:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-20T00:19:45.000Z (about 3 years ago)
- Last Synced: 2025-02-28T10:11:08.570Z (over 1 year ago)
- Language: PHP
- Size: 425 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [hCaptcha](https://www.hcaptcha.com) for Laravel 5, Laravel 6 and Laravel 7
## Features
- [x] Multiple captcha on page
- [x] Reset captcha
- [x] Auto discover service provider
- [x] Custom request method
- [x] Using difference key
- [x] Dynamic options on runtime
## Install following [this guide](https://github.com/thinhbuzz/laravel-h-captcha)
## Run example
> Require docker and docker-compose
```shell script
# run composer install
docker run --rm --interactive --tty --volume $PWD:/app composer install
# clone env file
cp .env.example .env
# generate key
docker-compose run --rm --volume $PWD:/app webserver php /app/artisan key:generate
# build and start application
docker-compose up --build
```