bryglen / yii2-validators
credit card validation yii 2
Package info
github.com/bryglen/yii2-validators
Type:yii2-extension
pkg:composer/bryglen/yii2-validators
1.0.1
2015-04-10 16:17 UTC
This package is not auto-updated.
Last update: 2026-03-01 00:57:21 UTC
README
credit card validation yii 2
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist bryglen/yii2-validators "1.0.1"
or add
"bryglen/yii2-validator": "1.0.1"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your models :
public function rules() { return [ ['cc', 'bryglen\validators\CreditCardValidator'] ]; }