Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

programmatordev/yet-another-php-validator

Repository files navigation

Yet Another PHP Validator

Latest Version Software License Tests

PHP validator with expressive error messages.

Tip

This library has been archived in favor of the Fluent Validator library. Check it out if you're interested in the same validation style.

Requirements

  • PHP 8.1 or higher.

Installation

Install the library via Composer:

composer require programmatordev/yet-another-php-validator

Basic Usage

Simple usage looks like:

use ProgrammatorDev\Validator\Validator;
// do this:
$validator = Validator::type('int')->greaterThanOrEqual(18);
// and validate with these:
$validator->validate(16); // returns bool: false
$validator->assert(16, 'age'); // throws exception: The age value should be greater than or equal to 18.

Documentation

Contributing

Any form of contribution to improve this library (including requests) will be welcome and appreciated. Make sure to open a pull request or issue.

Acknowledgments

This library is inspired by respect/validation and symfony/validator.

License

This project is licensed under the MIT license. Please see the LICENSE file distributed with this source code for further information regarding copyright and licensing.

About

PHP validator with expressive error messages

Topics

Resources

License

Stars

Watchers

Forks

Languages

AltStyle によって変換されたページ (->オリジナル) /