Download the PHP package huydang/phalcon-validation without Composer
On this page you can find all versions of the php package huydang/phalcon-validation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download huydang/phalcon-validation
More information about huydang/phalcon-validation
Files in huydang/phalcon-validation
Package phalcon-validation
Short Description Advanced validators for PHP Phalcon Framework.
License MIT
Informations about the package phalcon-validation
Advanced validators for PHP Phalcon Framework.
Introduction
Advanced Validators adds several new validators to support Phalcon Framework.
Installation
Install via composer
Supported Validators
- Min
- Max
- AlphaDash
- In
- NotIn
- IpV4
- IpV6
- Json
- Filled
- Timezone
- Image
Min
The field under validation must have a minimum value. For string data, value corresponds to the number of characters. For numeric data, value corresponds to a given integer value. For an array, size corresponds to the count of the array.
Max
The field under validation must be less than or equal to a maximum value. For string data, value corresponds to the number of characters. For numeric data, value corresponds to a given integer value. For an array, size corresponds to the count of the array.
AlphaDash
The field under validation may have alpha-numeric characters, as well as dashes and underscores.
In
The field under validation must be included in the given list of values.
NotIn
The field under validation must not be included in the given list of values.
IpV4
The field under validation must be an IPv4 address.
IpV6
The field under validation must be an IPv6 address.
Json
The field under validation must be a valid JSON string.
Filled
The field under validation must not be empty when it is present.
Timezone
The field under validation must be a valid timezone identifier according to the timezone_identifiers_list
PHP function.
Image
The file under validation must be an image.
All versions of phalcon-validation with dependencies
ext-phalcon Version >=3.1.2
ext-json Version *
ext-gd Version *