Open TheoKouzelis opened 5 years ago
or rewrite the package as a validator which works with egulias's package https://github.com/egulias/EmailValidator#how-to-extend
Maybe then we could use it as any other email validation style: 'email' => 'email:rfc,dns,mailgun'
What do you think ?
Laravel no longer uses
filter_var($value, FILTER_VALIDATE_EMAIL)
for email validation. Laravel now uses https://github.com/egulias/EmailValidator.Either require Laravel's email validation rule, or directly require the Egulias' package as the base email validator.