├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Validator.php └── rules.php └── tests ├── ValidatorTest.php ├── bootstrap.php └── rulesTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.lock 2 | *.sublime-* 3 | vendor 4 | test.php -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/src/Validator.php -------------------------------------------------------------------------------- /src/rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/src/rules.php -------------------------------------------------------------------------------- /tests/ValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rlanvin/php-form/HEAD/tests/ValidatorTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |