tylercd100 / laravel-validator-phone
Validate that a phone number is in the correct format
Installs: 4 367
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^5.5.9|^7.0
- illuminate/support: ^5.0
- illuminate/validation: ^5.0
Requires (Dev)
- orchestra/testbench: ^3.2
- phpunit/phpunit: ^4.8|^5.0
README
This Package has moved to here for laravel 5.5+. Please use that instead. Also check out these other community validation rules
This package only checks phone number formatting and not actual number validity.
Installation
Install via composer - In the terminal:
composer require tylercd100/laravel-validator-phone
Now add the following to the providers
array in your config/app.php
Tylercd100\Validator\Phone\ServiceProvider::class
Usage
// Test any phone number Validator::make(['test' => '15556667777'], ['test' => 'phone']); //true Validator::make(['test' => '+15556667777'], ['test' => 'phone']); //true Validator::make(['test' => '+1 (555) 666-7777'], ['test' => 'phone']); //true // Test for E164 Validator::make(['test' => '+15556667777'], ['test' => 'phone:E164']); //true // Test for NANP (North American Numbering Plan) Validator::make(['test' => '+1 (555) 666-7777'], ['test' => 'phone:NANP']); //true // Test for digits only Validator::make(['test' => '15556667777'], ['test' => 'phone:digits']); //true