Download the PHP package mydaniel/laravel-captcha without Composer

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

Laravel Captcha

Latest Version on Packagist Total Downloads License

A modern, highly customizable, and secure captcha package for Laravel.

This package provides an easy way to protect your web forms from bots by generating image-based captchas. It's designed to be both user-friendly for humans and challenging for bots.

Features

Installation

You can install the package via Composer:

`

Configuration

  1. Publish the configuration and translation files using the following Artisan command:

  2. This will create two new files:

    • config/captcha.php: Here you can configure all aspects of the captcha, including asset paths, character sets, and image settings for different profiles (default, math, etc.).
    • lang/vendor/captcha/: This directory will contain the translation files for validation messages.

Usage

Using the captcha involves two steps: displaying it in your form and validating the user's input.

1. Displaying the Captcha

In your Blade view, use the Captcha::create() facade to generate the captcha data.

2. Validating the Input

In your controller or form request, use the provided Captcha validation rule.

Using the Validation Rule Object (Recommended)

This method is clean and type-safe.

Using the String-based Rule

You can also use the rule as a string, which is useful in some scenarios.

Customization

Custom Fonts and Backgrounds

You can easily use your own fonts and background images.

  1. Place your .ttf font files or .png/.jpg background images in any directory within your project (e.g., public/assets/captcha).
  2. Update the fonts_path and backgrounds_path in your config/captcha.php file to point to these new directories.

Creating a New Generator

The package is built to be extensible. To create a new captcha type (e.g., a question-based captcha):

  1. Create a new class that implements the \MyDaniel\Captcha\Contracts\CaptchaGeneratorContract interface.

  2. Implement the generate(array $config): array method.

  3. Register your new generator in a service provider (e.g., AppServiceProvider):

  4. You can now use 'driver' => 'question' in a new profile in your config/captcha.php file.

Security

License

This package is open-sourced software licensed under the MIT license.


All versions of laravel-captcha with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0|^8.1|^8.2|^8.3|^8.4
illuminate/config Version ^8.0|^9.0|^10.0|^11.0|^12.0
illuminate/filesystem Version ^8.0|^9.0|^10.0|^11.0|^12.0
illuminate/support Version ^8.0|^9.0|^10.0|^11.0|^12.0
illuminate/hashing Version ^8.0|^9.0|^10.0|^11.0|^12.0
intervention/image Version ~3.0
ext-gd Version *
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 mydaniel/laravel-captcha contains the following files

Loading the files please wait ....