Download the PHP package eighteen73/laravel-turnstile without Composer

On this page you can find all versions of the php package eighteen73/laravel-turnstile. 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-turnstile

Introduction

This Laravel Package simplifies the implementation of Cloudflare Turnstile (a CAPTCHA alternative) on your website.

Installation

Require the package via Composer.

Then publish the config file to your project.

Turnstile Credentials

Please refer to the Cloudflare Turnstile documentation for instructions on how to get a Turnstile site key and secret key.

Once you have set up Turnstile in your Cloudflare account you will need to add two new values to your project's .env file.

Form Markup

First, you want to ensure that the Turnstile JavaScript is included on your website. Turnstile analyses various telemetry and client behavior exhibited during a session so this script should be included site-wide.

Use the Blade directive @turnstileScripts as follows:

Then when you wish to protect a form with Turnstile just include the following directive and error response code:

Validation Modes

There are two ways to validate your form submissions. The "middleware" mode is enabled by default is completely automatic but you may find it too limited, in which case you should enable the "validation" mode instead.

The validation mode is changed in your project's config/turnstile.php file.

Via Middleware

This will automatically check every request in the web middleware group for a Turnstile response code. If one is found it will verify it before allowing the request to continue.

This validation mode is not ideal if you need to protect middleware groups other than web or you want to more control over how/when the Turnstile errors are reported. For example if you wish to validate Turnstile alongside other form input fields (so all error messages can be displayed together) you should use the "validation" mode below.

Via Form Validation

This gives more flexibility but requires you to manually add the Turnstile response code to your form validation rules wherever it is used.

For example:

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-turnstile with dependencies

PHP Build Version
Package Version
Requires illuminate/support Version ^9.0|^10.0|^11.0
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 eighteen73/laravel-turnstile contains the following files

Loading the files please wait ....