ritey / libphonenumber-laravel
Service Provider for libphonenumber-for-php package
Installs: 6 958
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 1
Requires
- php: >=5.4.0
- giggsey/libphonenumber-for-php: ~7.0
This package is auto-updated.
Last update: 2024-11-15 22:20:33 UTC
README
This is a Service Provider and Facade package for the PHP library libphonenumber-for-php to make using the package with Laravel really easy.
Composer
To install libphonenumber-laravel as a Composer package, simply add this to your composer.json:
"ritey/libphonenumber-laravel": "1.1"
..and run composer update
. Once it's installed, if you're using Laravel 5, you can register the service provider in app/config/app.php
in the providers
array add :
'Ritey\LibPhoneNumberLaravel\LibPhoneNumberLaravelServiceProvider',
You can also benefit from using a Facade in Laravel 5 by adding to the alias array also in app.php below the providers array
'LibPhoneNumber' => 'Ritey\LibPhoneNumberLaravel\LibPhoneNumberLaravelFacade',
Copyright and Licence
libphonenumber-laravel has been coded by David Wright (@ritey) and is released under the MIT License.