2017 © Pedro Peláez
 

library validation

Data validation library. Validate arrays, array objects, domain models etc using a simple API. Easily add your own validators on top of the already dozens built-in validation rules. This fork maintains PHP 5.3 compatibility.

image

rossriley/validation

Data validation library. Validate arrays, array objects, domain models etc using a simple API. Easily add your own validators on top of the already dozens built-in validation rules. This fork maintains PHP 5.3 compatibility.

  • Monday, June 23, 2014
  • by rossriley
  • Repository
  • 1 Watchers
  • 2 Stars
  • 17,994 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 22 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Sirius Validation

Build Status Coverage Status Scrutinizer Code Quality Latest Stable Version License, (*1)

Sirius Validation is a library for data validation. It offers:, (*2)

  1. validator object to validate arrays, ArrayObjects or objects that have a toArray method. It can be extended easily to validate other types.
  2. value validator object to validate single values
  3. validation helper to simplify single value validation (does not generate error messages, only returns TRUE/FALSE)
  4. build-in validation rules to perform the actual data validation. The validation rules are used by the helper and validator objects.

Out-of-the-box, the library can handle arrays, ArrayObjects and objects that have implemented the toArray method. In order to validate other data containers you must create a DataWrapper so that the validator be able to extract data from your object., (*3)

Elevator pitch

$validation = new \Sirius\Validation\Validator;

// add a validation rule
$validator->add('title', 'required');

// add a rule that has a list of options
$validator->add('title', 'maxlength', array('max' => 100));
// or use JSON
$validator->add('title', 'maxlength', '{"max": 100}');
// or a URL query string
$validator->add('title', 'maxlength', 'max=100');

// add a rule with a custom error message
$validator->add('title', 'maxlength', 'max=100', 'Article title must have less than {max} characters');

// add a rule with a custom message and a label (very handy with forms)
$validator->add('title', 'maxlength', 'max=100', '{label} must have less than {max} characters', 'Title');

// add all of rule's configuration in a string (you'll see later why it's handy')
$validator->add('title', 'maxlength(max=255)({label} must have less than {max} characters)(Title)');

// add multiple rules at once (separate using [space][pipe][space])
$validator->add('title', 'required | maxlength(max=255) | minlength(min=10)');

// add all your rules at once
$validator->add(array(
    'title' => 'required | maxlength(max=10)({label} must have less than {max} characters)(Title)',
    'content' => 'required',
    'source' => 'website'
));

// add nested rules
$validator->add('recipients[*]', 'email'); //all recipients must be valid email addresses
$validator->add('shipping_address[city]', 'MyApp\Validator\City'); // uses a custom validator to validate the shipping city

Documentation

go to the documentation, (*4)

Release notes

1.1

  • Added HHVM to Travis CI
  • Renamed Validator* classes into Rule* classes (breaking change if you used custom rule classes)
  • Renamed ValidatorFactory to RuleFactory (breaking change)

The Versions

23/06 2014

dev-master

9999999-dev

Data validation library. Validate arrays, array objects, domain models etc using a simple API. Easily add your own validators on top of the already dozens built-in validation rules. This fork maintains PHP 5.3 compatibility.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

The Development Requires

by Adrian Miu

form validation security sanitization modeling

23/06 2014

1.2.1

1.2.1.0

Data validation library. Validate arrays, array objects, domain models etc using a simple API. Easily add your own validators on top of the already dozens built-in validation rules. This fork maintains PHP 5.3 compatibility.

  Sources   Download

MIT

The Requires

  • php >=5.3

 

The Development Requires

by Adrian Miu

form validation security sanitization modeling

11/04 2014

1.1.1

1.1.1.0

Data validation library. Validate arrays, array objects, domain models etc using a simple API. Easily add your own validators on top of the already dozens built-in validation rules

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Adrian Miu

form validation security sanitization modeling

22/03 2014

1.1.0

1.1.0.0

Data validation library. Validate arrays, array objects, domain models etc using a simple API. Easily add your own validators on top of the already dozens built-in validation rules

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by Adrian Miu

form validation security sanitization modeling