mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +01:00
No description
- PHP 99.1%
- Shell 0.9%
The rule "Email" now only supports the version >=2.0 of "egulias/email-validator". Also a few changes were made to make the rule a bit simpler. The method "getEmailValidator()" which was a lazy load of the "EmailValidator" class was removed in favor of trying to create the instance of "EmailValidator" in the constructor of "Email". That makes the rule immutable after its creation. Signed-off-by: Henrique Moody <henriquemoody@gmail.com> |
||
|---|---|---|
| docs | ||
| library | ||
| tests | ||
| .docheader | ||
| .gitattributes | ||
| .gitignore | ||
| .php_cs | ||
| .scrutinizer.yml | ||
| .travis.yml | ||
| CHANGELOG.md | ||
| composer.json | ||
| CONTRIBUTING.md | ||
| couscous.yml | ||
| LICENSE.md | ||
| phpunit.xml.dist | ||
| README.md | ||
Respect\Validation
The most awesome validation engine ever created for PHP.
- Complex rules made simple:
v::numericVal()->positive()->between(1, 255)->validate($input). - Granularity control for advanced reporting.
- More than 130 (fully tested) validation rules.
- A concrete API for non fluent usage.