Download the PHP package amitkhare/easy-validation without Composer
On this page you can find all versions of the php package amitkhare/easy-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download amitkhare/easy-validation
More information about amitkhare/easy-validation
Files in amitkhare/easy-validation
Download amitkhare/easy-validation
More information about amitkhare/easy-validation
Files in amitkhare/easy-validation
Vendor amitkhare
Package easy-validation
Short Description Easy Validation is an easy and simple PHP validation library
License MIT
Homepage http://github.com/amitkhare/easy-validation
Package easy-validation
Short Description Easy Validation is an easy and simple PHP validation library
License MIT
Homepage http://github.com/amitkhare/easy-validation
Please rate this library. Is it a good library?
Informations about the package easy-validation
amitkhare/easy-validation
Easy Validation is an easy to use PHP validation library
Install
Run this command from the directory in which you want to install.
Via Composer:
php composer.phar require amitkhare/easy-validation
Via Git:
git clone https://github.com/amitkhare/easy-validation.git
Manual Install:
Download: https://github.com/amitkhare/easy-validation/archive/master.zip
Extract it, require "PATH-TO/"."EasyValidation.php" where you want to use it.
Minimal Usage:
Usage:
Available Methods:
> $v->setSource(array["FIELD"=>"VALUE"]);
> $v->setLocale("en-IN",PATH); // Path is optional
> $v->check("FIELD","RULES");
> $v->match("FIELD1","FIELD2","RULES");
> $v->isValid(); // returns true/false
> $v->getStatus(); // get error messages
Available Rules:
> required
> email
> url
> numeric
> string
> float
> ipv4
> ipv6
> bool
> min
> max
> alphanum
> alphanumUnicode
> unique (avaiable only if instantiate EasyValidation With Database Details);
Sample en-IN.lang file [[ JSON FORMAT ]]
TODO:
> Support for single field check like setField() in addition with setSource()
All versions of easy-validation with dependencies
PHP Build Version
Package Version
The package amitkhare/easy-validation contains the following files
Loading the files please wait ....