PHPackages                             gabrielopes01/laravel-extra-validators - 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. [Validation &amp; Sanitization](/categories/validation)
4. /
5. gabrielopes01/laravel-extra-validators

ActiveLibrary[Validation &amp; Sanitization](/categories/validation)

gabrielopes01/laravel-extra-validators
======================================

A package with extra validation to Laravel requests

0.2.0(2y ago)015MITPHPPHP ^8

Since Jan 25Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Gabrielopes01/laravel-extra-validators)[ Packagist](https://packagist.org/packages/gabrielopes01/laravel-extra-validators)[ RSS](/packages/gabrielopes01-laravel-extra-validators/feed)WikiDiscussions master Synced 3w ago

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

Laravel Extra Validatiors
=========================

[](#laravel-extra-validatiors)

This package has some extra Validations to Laravel Request's, if you want to use any validator you need to extend on your app service provider adding this line inside the boot function:

```
use Gabrielopes01\LaravelExtraValidators\ExistsLike;

public function boot()
{
    Validator::extend(ExistsLike::handle(), ExistsLike::class);
}

```

Exists Like
-----------

[](#exists-like)

- Add this code line on boot:

```
Validator::extend(ExistsLike::handle(), ExistsLike::class);

```

- This validation you can check if the field has a similar value on a specific table/collum, like the example:

```
'field_req' => 'exists_like:Namespace\Class,collum_name'

```

Post
----

[](#post)

- Add this code line on boot:

```
Validator::extend(Post::handle(), Post::class);

```

- This validation will exclude the specific value of the request data if the request method doesn't match, like the example:

```
'field_num' => 'post'

```

Put
---

[](#put)

- Add this code line on boot:

```
Validator::extend(Put::handle(), Put::class);

```

- This validation will exclude the specific value of the request data if the request method doesn't match, like the example:

```
'field_num' => 'put'

```

Delete
------

[](#delete)

- Add this code line on boot:

```
Validator::extend(Delete::handle(), Delete::class);

```

- This validation will exclude the specific value of the request data if the request method doesn't match, like the example:

```
'field_num' => 'delete'

```

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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 ~6 days

Total

4

Last Release

862d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d4982909da658b03702b734847b6da5b890a3e7bc8cbb876a3ff8888b6616cfe?d=identicon)[Gabrielopes01](/maintainers/Gabrielopes01)

---

Top Contributors

[![Gabrielopes01](https://avatars.githubusercontent.com/u/60099140?v=4)](https://github.com/Gabrielopes01 "Gabrielopes01 (1 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/gabrielopes01-laravel-extra-validators/health.svg)

```
[![Health](https://phpackages.com/badges/gabrielopes01-laravel-extra-validators/health.svg)](https://phpackages.com/packages/gabrielopes01-laravel-extra-validators)
```

###  Alternatives

[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135212.4k7](/packages/statamic-rad-pack-runway)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21313.7k3](/packages/ecotone-laravel)[carsdotcom/laravel-json-schema

Json Schema validation for Laravel projects

1040.9k5](/packages/carsdotcom-laravel-json-schema)[duncanmcclean/statamic-cargo

Comprehensive e-commerce addon for Statamic. Build bespoke e-commerce sites without the complexity.

3310.1k](/packages/duncanmcclean-statamic-cargo)

PHPackages © 2026

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