2017 © Pedro Peláez
 

yii2-extension yii2-validators

Collection of useful validators for Yii Framework 2.0

image

yii2mod/yii2-validators

Collection of useful validators for Yii Framework 2.0

  • Monday, December 12, 2016
  • by disem
  • Repository
  • 3 Watchers
  • 17 Stars
  • 3,566 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 4 Versions
  • 39 % Grown

The README.md

Yii2 validators

Collection of useful validators for Yii Framework 2.0, (*1)

Latest Stable Version Total Downloads License Build Status, (*2)

Installation

The preferred way to install this extension is through composer., (*3)

Either run, (*4)

php composer.phar require --prefer-dist yii2mod/yii2-validators "*"

or add, (*5)

"yii2mod/yii2-validators": "*"

to the require section of your composer.json file., (*6)

Usage

  • Credit Card Validator
    public function rules()
    {
        return [
            [['creditCard'], \yii2mod\validators\ECCValidator::className()],
        ];
    }
  • Yii2 phone validator is a validator uses phone number util to validate and format the phone number attribute of model.
    public function rules()
    {
        return [
            [['phone'], \yii2mod\validators\PhoneValidator::className(), 'country' => 'US'], // OR
            [['phone'], \yii2mod\validators\PhoneValidator::className(), 'countryAttribute' => 'country'], // OR
            [['phone'], \yii2mod\validators\PhoneValidator::className(), 'countryCodeAttribute' => 'countryCode'], 
        ];
    }

The Versions

12/12 2016

dev-master

9999999-dev

Collection of useful validators for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Igor Chepurnoy

yii2 yii2 validators yii2 card validator yii2 phone validator

22/11 2016

1.2

1.2.0.0

Collection of useful validators for Yii Framework 2.0

  Sources   Download

MIT

The Requires

 

The Development Requires

by Igor Chepurnoy

yii2 yii2 validators yii2 card validator yii2 phone validator

05/07 2016

1.1

1.1.0.0

Yii2 validators

  Sources   Download

MIT

The Requires

 

by Igor Chepurnoy

extension yii2

13/05 2016

1.0

1.0.0.0

Yii2 validators

  Sources   Download

MIT

The Requires

 

by Igor Chepurnoy

extension yii2