PHPackages                             square-bit/laravel-eva - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. square-bit/laravel-eva

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

square-bit/laravel-eva
======================

Keep fake or disposable emails out. A validation rule for your forms.

1.2(5y ago)1132MITPHPPHP ^7.0

Since May 25Pushed 5y agoCompare

[ Source](https://github.com/square-bit/eva-laravel)[ Packagist](https://packagist.org/packages/square-bit/laravel-eva)[ Docs](https://e-va.io)[ RSS](/packages/square-bit-laravel-eva/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (2)Dependencies (1)Versions (5)Used By (0)

Laravel Email Validation
========================

[](#laravel-email-validation)

[![Latest Stable Version](https://camo.githubusercontent.com/35eefcc3815a49933b4e5bc8808b2aebc16370fdefda2b9abb4428ff53d6813e/68747470733a2f2f706f7365722e707567782e6f72672f7371756172652d6269742f6c61726176656c2d6576612f76)](//packagist.org/packages/square-bit/laravel-eva)[![License](https://camo.githubusercontent.com/66798f642c319f37b5be9d6623d27b29fafd21686373ed09927ff67785413537/68747470733a2f2f706f7365722e707567782e6f72672f7371756172652d6269742f6c61726176656c2d6576612f6c6963656e7365)](//packagist.org/packages/square-bit/laravel-eva)[![Total Downloads](https://camo.githubusercontent.com/201ff4473dbf4a548391dfeed1ac64a6f9da2a99caeb9af1f213b8a6baee2170/68747470733a2f2f706f7365722e707567782e6f72672f7371756172652d6269742f6c61726176656c2d6576612f646f776e6c6f616473)](//packagist.org/packages/square-bit/laravel-eva)

Laravel package for integration with e-va.io service. Provides a Rule to automatically validate form emails.

### Install

[](#install)

```
composer require square-bit/laravel-eva
```

The package will automatically register its service provider.

To publish the default config at `config/eva.php`:

```
php artisan vendor:publish --provider="Squarebit\EVA\EVAServiceProvider" --tag="config"
```

Make sure you update the `.env` file with a valid API Key (generate one at e-va.io)

VariablesDefault valueEVA\_APIKEYnullEVA\_SERVICE\_UNAVAILABLEtrueEVA\_UNKOWNfalseEVA\_INVALIDfalseEVA\_RISKYfalseEVA\_SAFEtrue### Usage

[](#usage)

You can now use EVA to validate any email provided by your users directly with the Laravel Validator.

Let's say you're already validating an email on its basic properties

```
    return Validator::make($data, [
        [...]
        'email' => ['required', 'string', 'email', 'max:255'],
        [...]
    ]);
```

To get the email validated simply add the EVAValidated class to the list of rules:

```
use Squarebit\EVA\Rules\EVAValidated

[...]

    return Validator::make($data, [
        [...]
        'email' => [new EVAValidated, 'required', 'string', 'email', 'max:255', 'unique:users'],
        [...]
    ]);
```

That's it !

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Squarebit](https://github.com/square-bit)

License
-------

[](#license)

MIT. Please see the [license file](license.md) for more information.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~174 days

Total

4

Last Release

2071d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/63dd954cd38674cf0319666e08400850a3ef880b42e630d1b6de7b70c4caa332?d=identicon)[saidatom](/maintainers/saidatom)

![](https://www.gravatar.com/avatar/01faacc649020a16c1cceb7ec2dd2cf579c5de812ee9a88aad11be04e41c54bf?d=identicon)[Squarebit](/maintainers/Squarebit)

![](https://www.gravatar.com/avatar/2d983f39b1b70e94a81617ec324d9f613cb618aa0ccce1fbfed6e182f9425179?d=identicon)[tiagof](/maintainers/tiagof)

---

Top Contributors

[![saidatom](https://avatars.githubusercontent.com/u/2377368?v=4)](https://github.com/saidatom "saidatom (2 commits)")[![tiagof](https://avatars.githubusercontent.com/u/1729910?v=4)](https://github.com/tiagof "tiagof (1 commits)")

---

Tags

email-validatorevalaravellaravel-validatorapivalidationemailrulesquarebitlaravel-eva

### Embed Badge

![Health badge](/badges/square-bit-laravel-eva/health.svg)

```
[![Health](https://phpackages.com/badges/square-bit-laravel-eva/health.svg)](https://phpackages.com/packages/square-bit-laravel-eva)
```

###  Alternatives

[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

252143.0k](/packages/erag-laravel-disposable-email)[ashallendesign/laravel-mailboxlayer

A lightweight Laravel package for validating emails using the Mailbox Layer API.

772.2k](/packages/ashallendesign-laravel-mailboxlayer)[martian/spammailchecker

A laravel package that protect users from entering non-existing/spam email addresses.

422.1k](/packages/martian-spammailchecker)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
