althinect / laravel-sendlk
Laravel package for Send.lk SMS Gateway
Requires
- php: ^7.4|^8.0
- guzzlehttp/guzzle: ^7.4
- illuminate/support: ^8.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-10-28 08:20:37 UTC
README
This is a package for integrating Send.lk (https://send.lk) with a Laravel application. The packages supports custom configurations for credentials and logs for all sent messages. Moreover, these message logs can be pruned with a command which can be set up with scheduler for scheduled pruning.
NOTE - This package is designed to be used for internal purposes of Althinect. However, you're free to use or modify the codebase. That being said, use at your own discretion as the package might have breaking changes in the future.
Installation
You can install the package via composer:
composer require althinect/laravel-sendlk
After installation. Run:
php artisan vendor:publish --provider="Althinect\LaravelSendlk\LaravelSendlkServiceProvider" --tag=config
Usage
LaravelSendlkFacade::send(['0000000000'], 'This is a test message');
The send
method will accept two parameters. The first parameter is an array with the phone numbers to the send the message to. The second parameter is the message
to send. If the first parameter is not an array the package will throw an error.
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email udamsliyanage@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.