dynamikaweb / yii2-br-validators
Yii2 Brazilian document validator
Installs: 2 467
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:yii2-extension
Requires
- php: >=5.5.0
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-11-19 03:52:57 UTC
README
About
Brazilian document validator
- Titulo de Eleitor: Número do documento eleitoral.
Installation
The preferred way to install this extension is through composer.
Either run
$ composer require dynamikaweb/yii2-br-validators "*"
or add
"dynamikaweb/yii2-br-validators": "*"
to the require
section of your composer.json
file.
Usage
Add the rules as the following example
use Yii; use yii\base\Model; use dynamikaweb\validators\TituloValidator; class PersonExample extends Model { public $name; public $titulo_eleitor; /** * @return array the validation rules. */ public function rules() { return [ // name is required ['name', 'required'], // Título Eleitoral validator ['titulo_eleitor', TituloValidator::className()] ]; } }