fawkescreatives / myanmar-phone
This package is for building easy to do Myanmar phone number in laravel.
v1.3.0
2025-03-16 06:53 UTC
Requires
- php: ^8.1
- giggsey/libphonenumber-for-php: ^8.0
- illuminate/contracts: ^10.0|^11.0|^12.0
Requires (Dev)
- larastan/larastan: ^2.0|^3.0
- laravel/pint: ^1.5
- nunomaduro/collision: ^7.0|^8.1
- orchestra/testbench: ^8.0|^9.0|^10.0
- pestphp/pest: ^2.0|^3.0
- pestphp/pest-plugin-laravel: ^2.0|^3.0
- phpstan/extension-installer: ^1.1|^2.0
- phpstan/phpstan-deprecation-rules: ^1.1|^2.0
- phpstan/phpstan-phpunit: ^1.1|^2.0
README
Myanmar phone number များနှင့်ပတ်သက်ပြီး format လုပ်ခြင်းနှင့် check လုပ်နိုင်ရန်ရည်ရွယ်ပြီးတည်ဆောက်သည်။
Table of Contents
Installation
Composer ကိုသုံးပြီး Install လုပ်ပါ။
composer require fawkescreatives/myanmar-phone
Laravel Package Auto-Discovery မလုပ်လျှင် config/app.php
file ထဲမှ providers
ထဲမှာ ဒီလိုသွားထည့်ပါ။
/* * Package Service Providers... */ MyanmarPhone\MyanmarPhoneServiceProvider::class,
Configuration
php artisan vendor:publish --provider="MyanmarPhone\MyanmarPhoneServiceProvider"
config/myanmar_phone.php
တွင် default format standard ကိုသတ်မှတ်နိုင်သည်။
Usage
- Option 1: Use Injection
use MyanmarPhone\MyanmarPhone; public function index(MyanmarPhone $service) { $phone = '09251234567'; return $service->make($phone)->getPhoneNumber(); }
- Option 2: Use Facade
use MyanmarPhone\Facades\MyanPhone; public function index() { $phone = '09251234567'; return MyanPhone::make($phone)->getPhoneNumber(); }
Validation
eg..,
Validator::make($data, [ 'phone_number' => [ 'myanmar_phone' ], ]);
Functions
eg..,
MyanPhone::make($phone)->format(2); // look format number in config
- format($format)
- formatE164()
- formatInternational()
- formatRFC3966(string $separator = null)
- formatNational(string $separator = null)
- operator($number = null)
- telecom($number = null)
- isTelenor($number = null)
- isOoredoo($number = null)
- isMpt($number = null)
- isMyTel($number = null)
- isMec($number = null)
- getCountryCode()
- getStrPhoneNumber()
- getPhoneNumber($leadingZero = true)
Testing
You can run the tests with:
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
License
The MIT License (MIT). Please see License File for more information.