Looking to hire Laravel developers? Try LaraJobs

laravel-blacklist maintained by bekwoh

Description
Validation disposable email domain
Last update
2023/02/25 02:41 (dev-main)
License
Downloads
1 088

Comments
comments powered by Disqus

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.