├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Engine │ └── ValidetoEngine.php ├── Rules │ ├── CustomRule │ │ └── CustomRuleInterface.php │ ├── DefaultRules.php │ └── DefaultRulesInterface.php └── Valideto.php └── tests ├── Helpers └── MyCustomRule.php ├── Valideto ├── ValidetoArrayTest.php ├── ValidetoEngineTest.php ├── ValidetoMiscTest.php ├── ValidetoNumberTest.php └── ValidetoStringTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .phpunit.result.cache 3 | composer.lock 4 | index.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Engine/ValidetoEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/src/Engine/ValidetoEngine.php -------------------------------------------------------------------------------- /src/Rules/CustomRule/CustomRuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/src/Rules/CustomRule/CustomRuleInterface.php -------------------------------------------------------------------------------- /src/Rules/DefaultRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/src/Rules/DefaultRules.php -------------------------------------------------------------------------------- /src/Rules/DefaultRulesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/src/Rules/DefaultRulesInterface.php -------------------------------------------------------------------------------- /src/Valideto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/src/Valideto.php -------------------------------------------------------------------------------- /tests/Helpers/MyCustomRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/tests/Helpers/MyCustomRule.php -------------------------------------------------------------------------------- /tests/Valideto/ValidetoArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/tests/Valideto/ValidetoArrayTest.php -------------------------------------------------------------------------------- /tests/Valideto/ValidetoEngineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/tests/Valideto/ValidetoEngineTest.php -------------------------------------------------------------------------------- /tests/Valideto/ValidetoMiscTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/tests/Valideto/ValidetoMiscTest.php -------------------------------------------------------------------------------- /tests/Valideto/ValidetoNumberTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/tests/Valideto/ValidetoNumberTest.php -------------------------------------------------------------------------------- /tests/Valideto/ValidetoStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashemirafsan/valideto/HEAD/tests/Valideto/ValidetoStringTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |