mirror of
https://github.com/Respect/Validation.git
synced 2026-03-18 08:09:51 +01:00
No description
- PHP 99.1%
- Shell 0.9%
The class was called `Factory` because we used to use it to create rules and exceptions. Since we don’t have more exceptions per rule, the name `RuleFactory` makes more sense, as it accurately describes its purpose. I’ve turned that class into an interface, and copied the implementation to a new class, `NamespacedRuleFactory`, which describes more of what that specific implementation does. |
||
|---|---|---|
| .github | ||
| bin | ||
| data/domain/public-suffix | ||
| docs | ||
| library | ||
| tests | ||
| .docheader | ||
| .gitattributes | ||
| .gitignore | ||
| .readthedocs.yaml | ||
| aliases.php | ||
| CHANGELOG.md | ||
| codecov.yml | ||
| composer.json | ||
| CONTRIBUTING.md | ||
| LICENSE | ||
| mkdocs.yml | ||
| phpcs.xml.dist | ||
| phpstan.neon.dist | ||
| 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)->isValid($input). - Granularity control for advanced reporting.
- More than 150 (fully tested) validation rules.
- A concrete API for non fluent usage.
Learn More: