crodas / validator
Validation library
Installs: 2 199
Dependents: 3
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- crodas/cli: ~0.1
- crodas/file-util: >=0.1.7
- crodas/notoj: ^1.0
- crodas/watch-files: ~0.1
Requires (Dev)
- crodas/simple-view-engine: >=0.1.28
README
Generate static validators to validate your data in PHP. Static means that the rules are defined offline, then the library generates code to run the validations. We don't run any checking at runtime.
If you need to define validation rules on the fly, for instance you have a CMS or something like that, then this library would be of little help (unless you call the crodas\Validator\Builder
manually), in that case I would recommend to take a look at @Respect's validation library which has been an inspiration for this library.
How to installed
The easiest way of install the package is using Composer:
composer "crodas/validator":\*
How to use it
Our object
All the validation rules are defined used Annotatios, it should be like this:
/** @Validate */ class User { /** @Between([18, 99], "Invalid age range, it should be between 18-99") */ protected $age; /** * @NoWhitespace("Spaces are not allowed") * @MinLength([5], "{$value} is too short") * @MaxLength([10], "{$value} is too long") */ public $username; }
Easy way
You can just call the crodas/Validator/validate
function, it will take care of the everything else.
$user = new User; $user->age = 17; $user->username = "invalid username"; if (!crodas\Validator\validate($user, $errors)) { echo "<h1>There has been an error</h1>"; foreach ($errors as $property => $error) { echo "...\n"; } exit; }
Hard way
You can also generate the validation object reading the PHP files from a given directory. This project exposes it's engine and compile so this can be done very easily. The first thing you have to do is create the Validator object.
require "vendor/autoload.php"; $val = new crodas\Validator\Init("/classes/", "/tmp/foo.php");
The validator object would look for classes defined inside /classes/
and its subdirectories the first time. It would then load classes with @Validate annotation in it.
To validate an object you would have to do something like this.
$errors = $val->validate(new User); if (!empty($errors)) { foreach ($errors as $field => $exception) { echo "{$field} is not valid ( {$exception} )\n"; } }