cleaniquecoders/laravel-blacklist

Validation disposable email domain

1.3.1 2024-05-26 07:46 UTC

This package is auto-updated.

Last update: 2024-06-26 07:55:45 UTC


README

Validate Disposable Email Domain

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Validate the email provided either in the list of blacklisted domain.

Installation

You can install the package via composer:

composer require cleaniquecoders/laravel-blacklist

You can publish the config file with:

php artisan vendor:publish --tag="blacklist-config"

Then install list of disposable email list:

php artisan blacklist:install

Usage

use CleaniqueCoders\LaravelBlacklist\Rules\Blacklist;

$request->validate([
    'email' => [new Blacklist]
]);

// OR

Validator::validate([
    'email' => 'malinator.com',
], [
    'email' => [new Blacklist],
]);

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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