mikk150/yii2-phone-validator

yii2 phonenumber validator

Installs: 9 636

Dependents: 1

Suggesters: 0

Security: 0

Stars: 5

Watchers: 1

Forks: 2

Open Issues: 0

Type:yii2-extension

1.0.6 2023-04-19 14:19 UTC

This package is auto-updated.

Last update: 2024-04-19 16:30:25 UTC


README

This extension validates phone numbers

Build Status codecov

It will also format phone number to ITU-T E.164 or any other format that LibPhoneNumber supports(for full support see libphonenumber\PhoneNumberFormat)

Usage

// add this in your model
use mikk150\phonevalidator\PhoneNumberValidator;

// use the validator in your model rules
public function rules() {
    return [
        [['phone'], PhoneNumberValidator::className(), 'country' => 'US']
    ];
}