owaslo / textit
Laravel notification channel for textit Sri Lanka
Requires
- php: >=7.2
- illuminate/notifications: ~6.0 || ~7.0 || ~8.0
- illuminate/support: ~6.0 || ~7.0 || ~8.0
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2025-03-12 14:03:13 UTC
README
Please see this repo for instructions on how to submit a channel proposal.
Laravel Textit Notification Channel
This package makes it easy to send notifications using [Textit](link to service) with Laravel 5.5+, 6.x and 7.x
Contents
Installation
You can install this package via composer:
composer require owaslo/textit
Setting up the Textit service
Add your Textit sms gate user, password and baseurl to your config/services.php:
// config/services.php ... 'textit' => [ 'user' => env('TEXTIT_USER'), 'password' => env('TEXTIT_PASSWORD'), 'baseurl' => env('TEXTIT_BASEURL'), ], ...
Usage
You can use the channel in your via() method inside the notification:
use Illuminate\Notifications\Notification; use NotificationChannels\TurboSMS\TurboSMSMessage; class AccountApproved extends Notification { public function via($notifiable) { return ["textit"]; } public function toTextit($notifiable) { return (new TextitMessage("Your account was approved!")); } }
Available Message methods
A list of all available options
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Security
If you discover any security related issues, please email upeksha@owaslo.com instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.