PHPackages                             fryiee/pyro-repeater-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. fryiee/pyro-repeater-validators

ActiveProject[Utility &amp; Helpers](/categories/utility)

fryiee/pyro-repeater-validators
===============================

Additional repeaters for PyroCMS 3 Repeater Field Type.

1.0.0(9y ago)132MITPHP

Since Mar 8Pushed 9y ago2 watchersCompare

[ Source](https://github.com/fryiee/pyro-repeater-validators)[ Packagist](https://packagist.org/packages/fryiee/pyro-repeater-validators)[ RSS](/packages/fryiee-pyro-repeater-validators/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (2)Used By (0)

pyro-repeater-validators
========================

[](#pyro-repeater-validators)

Additional repeaters for PyroCMS 3 Repeater Field Type.

Usage
-----

[](#usage)

Require using composer: `composer require fryiee/pyro-repeater-validators`

Add use statement in your own FormBuilder:

```
use Fryiee\RepeaterValidators\ValidateFieldValueMinimumAmount;
use Fryiee\RepeaterValidators\ValidateFieldValueMaximumAmount;
use Fryiee\RepeaterValidators\ValidateFieldValueAmount;
use Fryiee\RepeaterValidators\ValidateFieldWithLaravelRules;
```

Add 'rules' and 'validators' array with handler to the fields in your FormBuilder: e.g.

```
'phones' => [
  'validators' => [
    'validate_max_number_of_field' => [
      'handler' => ValidateFieldValueMaximumAmount::class,
      'message' => false,
    ],
  ],
  'rules' => [
    'validate_max_number_of_field:main,true,1'
  ],
],
```

```
'phones' => [
  'validators' => [
    'validate_min_number_of_field' => [
      'handler' => ValidateFieldValueMinimumAmount::class,
      'message' => false,
    ],
  ],
  'rules' => [
    'validate_min_number_of_field:main,true,1'
  ],
],
```

```
'phones' => [
  'validators' => [
    'validate_number_of_field' => [
      'handler' => ValidateFieldValueAmount::class,
      'message' => false,
    ],
  ],
  'rules' => [
    'validate_number_of_field:main,true,1'
  ],
],
```

```
'logs' => [
  'validators' => [
    'validate_with_laravel_rules' => [
      'handler' => ValidateFieldWithLaravelRules::class,
      'message' => false,
    ],
  ],
  'rules' => [
    'validate_with_laravel_rules:ip_address,ip,`,string'
  ],
]
```

Arguments
---------

[](#arguments)

### ValidateFieldValueAmount

[](#validatefieldvalueamount)

`{field},{value},{amount}`

e.g `phone_number,12345678,3` would mean that exactly 3 of the phone\_number fields in the repeater form would have to be equal to 12345678.

### ValidateFieldValueMaximumAmount

[](#validatefieldvaluemaximumamount)

`{field},{value},{amount}`

e.g `phone_number,12345678,3` would mean that at most 3 of the phone\_number fields in the repeater form would have to be equal to 12345678.

### ValidateFieldValueMinimumAmount

[](#validatefieldvalueminimumamount)

`{field},{value},{amount}`

e.g `phone_number,12345678,3` would mean that at least 3 of the phone\_number fields in the repeater form would have to be equal to 12345678.

### ValidateFieldWithLaravelRules

[](#validatefieldwithlaravelrules)

`{field},{laravel_rule1},`,{laravel_rule2},`,{laravel_rule3}`

e.g `phone_number,string,`,numeric,`,in:1,2,3,4,5,6` would mean that phone\_number would need to be string, numeric and be within the given array of values.

License
-------

[](#license)

### This package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

[](#this-package-is-open-sourced-software-licensed-under-the-mit-license)

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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

Unknown

Total

1

Last Release

3400d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5254791?v=4)[Craig Berry](/maintainers/fryiee)[@fryiee](https://github.com/fryiee)

---

Top Contributors

[![fryiee](https://avatars.githubusercontent.com/u/5254791?v=4)](https://github.com/fryiee "fryiee (7 commits)")

---

Tags

laravelpyrocms

### Embed Badge

![Health badge](/badges/fryiee-pyro-repeater-validators/health.svg)

```
[![Health](https://phpackages.com/badges/fryiee-pyro-repeater-validators/health.svg)](https://phpackages.com/packages/fryiee-pyro-repeater-validators)
```

###  Alternatives

[stephenjude/filament-blog

Filament Blog Builder

20618.8k](/packages/stephenjude-filament-blog)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11258.1k](/packages/datomatic-nova-detached-actions)[websemantics/pyrocms-theme

PyroCMS Plus Admin Theme

151.3k7](/packages/websemantics-pyrocms-theme)

PHPackages © 2026

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