Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 717 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 717 Bytes

hCaptcha for Laravel 5, Laravel 6 and Laravel 7

Features

  • Multiple captcha on page

  • Reset captcha

  • Auto discover service provider

  • Custom request method

  • Using difference key

  • Dynamic options on runtime

Install following this guide

Run example

Require docker and docker-compose

# 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