timwassenburg/laravel-disposable-email-validator
Composer 安装命令:
composer require timwassenburg/laravel-disposable-email-validator
包简介
Validate if the input is an disposable email address
README 文档
README
Table of Contents
Installation
Run composer require to install the package.
composer require timwassenburg/laravel-disposable-email-validator
Usage
Add the disposable-email rule to input you want to check.
Keep in mind that the disposable-email rule doesn't check if the email is valid so it is recommended
to use it in combination with the email validation rule.
'email' => 'required|email|disposable-email'
Translations
Publish the translations with the following command.
php artisan vendor:publish --provider="TimWassenburg\DisposableEmailValidator\DisposableEmailServiceProvider" --tag="translations"
You can now add or update translations in the resources/lang/vendor/disposable-email folder.
Adding more disposable email domains
The config contains all domains the validator is checking, you can publish the config and extend the list by adding more domains.
php artisan vendor:publish --provider="TimWassenburg\DisposableEmailValidator\DisposableEmailServiceProvider" --tag="config"
Caching
Although this might be obvious, just a small reminder. The list of disposable emails is loaded from a config file. For a production environment it is recommended to cache the config for optimal performance. You can use the default Laravel config caching for this.
php artisan config:cache
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 111
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-10-25
