webtoolsnz/yii2-validators

A collection of yii2 validators.

Installs: 37 323

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 16

Forks: 0

Open Issues: 0

Type:yii2-extension

0.1.8 2020-05-01 01:01 UTC

This package is auto-updated.

Last update: 2024-04-13 05:55:35 UTC


README

Software License Build Status Coverage Status Quality Score

A collection of Yii2 validators for various localities.

Installation

The preferred way to install this extension is through composer.

$ composer require webtoolsnz/yii2-validators

Example Use

Model Validation rules

use webtoolsnz\validators\en_AU\NmiValidator;

class MyModel extends \yii\base\Model
{
    public function rules()
    {
        return [
            [['nmi'], NmiValidator::className()]
        ];
    }
}

Adhoc Validation

$validator = new webtoolsnz\validators\en_AU\NmiValidator();
$validator->validate('NGGG0000554');

Available Validators

  • PasswordStrengthValidator
  • PhoneNumberValidator

en_AU

  • NmiValidator
  • AbnValidator
  • PhoneNumberValidator

en_GB

  • PostCodeValidator
  • PhoneNumberValidator

Phone Number Validation

Use webtoolsnz\validators\en_GB\PhoneNumberValidator or webtoolsnz\validators\en_AU\PhoneNumberValidator for simpilicity (no options required) for other regions use webtoolsnz\validators\PhoneNumberValidator

Options defined as follows

$rules = [
   [
       'phone',
       webtoolsnz\validators\PhoneNumberValidator::className(),
            // ISO 2 letter country code - Required (unless using en_GB or en_AU versions) will convert
            // 021 => +6421
        'expectedRegion' => 'NZ',

            // auto fills expectedRegion - phone number MUST be from this region
        'requiredRegion' => 'NZ',

            // number is required to match type, NUMBER_TYPE_FIXED_LINE is also available
        'numberType' => PhoneNumberValidator::NUMBER_TYPE_MOBILE,

            // will re-format input to match the given format. Values are FORMAT_NATIONAL FORMAT_E164 and FORMAT_INTERNATIONAL
        'format' => PhoneNumberValidator::FORMAT_E164,


        // some error messages are also customizable
];

Testing

webtoolsnz/yii2-validators has a PHPUnit test suite. To run the tests, run the following command from the project folder.

$ composer test

License

The MIT License (MIT). Please see LICENSE for more information.