ktaris/yii2-mexvalidators

Two data validators for Mexico-specific data: CURP and RFC.

0.0.1 2015-10-08 03:19 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:20:27 UTC


README

Validators for two data strings used in Mexico for identity, RFC and CURP, for use with the Yii 2.* framework.

Installation

Add dependency to your composer.json file:

{
    "require": {
        "ktaris/yii2-mexvalidators": "0.0.1"
    }
}

Usage

In order to use the validator, you need to provide the full path to the validator in the model:

public function rules()
{
    return [
       [['rfc'], RfcValidator::className()],
       [['curp'], CurpValidator::className()],
    ];
}