txthinking / validation
Use Laravel 5 validation as a standalone component.
This package's canonical repository appears to be gone and the package has been frozen as a result.
v5.2
2016-03-11 03:32 UTC
Requires
- illuminate/validation: ~5.2
Requires (Dev)
- phpunit/phpunit: ~4.6
This package is not auto-updated.
Last update: 2020-03-30 05:10:29 UTC
README
Installation
Use Laravel 5 validation as a standalone component
$ composer require txthinking/validation
Usage
<?php
use Tx\Validator;
$v = Validator::make(
['name' => 'Day007'],
['name' => 'required|max:5'],
['name.max' => 'who are u 007']
);
if ($v->fails()){
var_dump($v->messages());
}