babatundeodaniel/laravel-fake-email-validator

This package helps you avoid fake emails in your registration process

v1.2 2022-07-29 18:46 UTC

This package is auto-updated.

Last update: 2024-04-29 04:28:12 UTC


README

Latest Version on Packagist Build Status Quality Score Total Downloads

The package checks the input email against an updated list of known temporary email host.

Installation

You can install the package via composer:

composer require babatundeodaniel/laravel-fake-email-validator

To customize the configuration file, publish the package configuration using Artisan.

php artisan vendor:publish --provider="Getripay\GetripayVerifyFakeEmails\GetripayVerifyFakeEmailsServiceProvider"

You can then edit the generated config at app/config/config/getripay_verify_fake_emails.php.

Usage

// Add rule to your laravel validation like this.
public function rules()
{
    return [
        'emails' => ['not_fake_email'],
    ];
}

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email obabatundedaniel@gmail.com instead of using the issue tracker.

Credits

License

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

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.