This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
You can install the package via composer:
composer require vvinners/moviderPublish config file to app/config
php artisan vendor:publish --provider="VVinners\Movider\MoviderServiceProvider" --tag=config
php artisan vendor:publish --provider="VVinners\Movider\MoviderServiceProvider" --tag=migration
php artisan migrate --path=/database/migrations/2021_09_22_073143_create_movider_log_table.php Put this to config/app.php if the package is not auto discovered
VVinners\Movider\MoviderServiceProvider::classYou can add Movider credentials into your .env file:
MOVIDER_API_KEY=************************
MOVIDER_API_SECRET=********************************Send SMS API by passing message and phone number Last variable can be optional
use VVinners\Movider\Movider;
$moviderProvider = new Movider;
$response = $moviderProvider->sendMessage('Test', '60123456789', 'MOVIDER');Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email marktan@vvinners.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.