├── .github └── workflows │ └── run-tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Facades │ └── RecaptchaV3.php ├── Providers │ └── RecaptchaV3ServiceProvider.php ├── RecaptchaV3.php └── config │ └── recaptchav3.php └── tests ├── TestCase.php ├── ValidationTest.php └── VerifyTest.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Facades/RecaptchaV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/src/Facades/RecaptchaV3.php -------------------------------------------------------------------------------- /src/Providers/RecaptchaV3ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/src/Providers/RecaptchaV3ServiceProvider.php -------------------------------------------------------------------------------- /src/RecaptchaV3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/src/RecaptchaV3.php -------------------------------------------------------------------------------- /src/config/recaptchav3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/src/config/recaptchav3.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/ValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/tests/ValidationTest.php -------------------------------------------------------------------------------- /tests/VerifyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josiasmontag/laravel-recaptchav3/HEAD/tests/VerifyTest.php --------------------------------------------------------------------------------