Giter VIP home page Giter VIP logo

validation's Introduction

About

Validation library for PHP 5.4+ / HHVM inspired by Joi from Hapi.

Build Status Minimum PHP Version Coverage Status Dependency Status

Installation

The recommended way to install the library is through Composer

composer require bartosz-maciaszek/validation

Examples

Validation with the library is straightforward. You can validate primitives like this:

<?php

use Validation\Validation as V;

V::validate('foobar', V::string(), function($err, $output) {
    if ($err) {
        echo 'Validation failed: ' . $err;
        exit;
    }
    
    echo $output; // 'foobar'
});

You can also chain other assertions:

V::validate('[email protected]', V::string()->email(), function($err, $output) {
    // ...
});

Library also supports conversions:

V::validate('FooBar', V::string()->lowercase(), function($err, $output) {
    // $output equals 'foobar'!
});

Wanna something more complex? Let's try to validate an array!

$input = [
    'foo' => 'bar',
    'baz' => [
        'quux' => 'foo',
        'baz' => 'test-123456',
        'bar' => 123,
        'foo' => 'test123test'
    ]
];

$schema = V::arr()->keys([
    'foo' => V::string()->length(3),
    'baz' => V::arr()->keys([
        'quux' => V::string()->valid('foo', 'bar', 'baz')->uppercase(),
        'baz' => V::string()->regex('/^test\-[0-9]+$/'),
        'bar' => V::number()->min(100)->max(200),
        'foo' => V::string()->replace('test', 123)
    ])
]);

V::validate($input, $schema, function($err, $output) {
    var_dump($output);
});

Documentation can be found here (please note it's not 100% completed :)).

Tests

To run the unit test, simply install the dependencies and invoke make test

$ make deps
$ make test

Contributing

Contributions are welcome. If you want to help, please fork the repo and submit a pull request. To maintain the coding style, please make sure your code complies with PSR2 standard.

$ make cs

validation's People

Contributors

bartosz-maciaszek avatar

Watchers

James Cloos avatar Pawel avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.