programmatordev/yet-another-php-validator

PHP validator with expressive error messages

v1.0.0 2024-04-02 09:14 UTC

README

Latest Version Software License Tests

PHP validator with expressive error messages.

Requirements

  • PHP 8.1 or higher.

Installation

You can install the library via Composer:

composer require programmatordev/yet-another-php-validator

To use the library, use Composer's autoload:

require_once 'vendor/autoload.php';

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, 16 given.

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.