Download the PHP package teampanfu/laravel-hcaptcha without Composer

On this page you can find all versions of the php package teampanfu/laravel-hcaptcha. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-hcaptcha

hCaptcha package for Laravel

Visit hCaptcha.com

Latest Version Total Downloads

A package specifically designed to include hCaptcha directly into Laravel.

Installation

To install, use Composer:

Manual setup

As of Laravel 5.5, packages are discovered automatically via package discovery. So if you are using a newer version, you can skip these steps.

Add the following to your config/app.php:

Then publish the configuration file:

Configuration

Add your website in the hCaptcha dashboard to get a site key and secret key.

When you have done that, add the keys to your .env file:

These are the test keys we use by default. You should not use them in production!

Usage

Display

To display the widget:

You can also set custom attributes on the widget:

Or extend the class:

Script

To load the hCaptcha javascript resource:

You can also set the query parameters:

Validation

To validate the hCaptcha response, use the hcaptcha rule:

You can leave out the required rule, because it is already checked internally.

Custom validation message

Add the following values to your validation.php in the language folder:

Invisible Captcha

You can also use an invisible captcha where the user will only be presented with a hCaptcha challenge if that user meets challenge criteria.

The easiest way is to bind a button to hCaptcha:

This will generate a button with an h-captcha class and the site key. But you still need a callback for the button:

By default, onSubmit is specified as callback, but you can easily change this (along with the text of the button):

You can also set other custom attributes, including class.

Use without Laravel

The package is designed so that it can be used without Laravel. Here is an example of how it works:

Testing

Contribute

If you find a bug or have a suggestion for a feature, feel free to create a new issue or open a pull request.

We are happy about every contribution!

License

This package is open-source software licensed under the MIT License.


All versions of laravel-hcaptcha with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2|^8.0
guzzlehttp/guzzle Version ^6.2|^7.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package teampanfu/laravel-hcaptcha contains the following files

Loading the files please wait ....