Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 783 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 783 Bytes

yii2-phone-validator

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']
    ];
}