jauert/validator

Very lightweight validator builder.

Installs: 107

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/jauert/validator

0.1.0 2021-07-06 13:34 UTC

This package is auto-updated.

Last update: 2025-12-15 20:05:26 UTC


README

Usage

$validator = new Validator();
$validator->notBlank('test', 'Empty spaces are not allowed.');
$validator->validate(['test' => ' ']);

// will result in ['test' => ['Empty spaces are not allowed.']]