loopcraft / msgowl
This is my package msgowl
Fund package maintenance!
loopcraft
Requires
- php: ^8.0
- guzzlehttp/guzzle: ^7.0
- illuminate/contracts: ^8.73
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- nunomaduro/collision: ^5.10
- nunomaduro/larastan: ^1.0
- orchestra/testbench: ^6.22
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-03-23 10:13:18 UTC
README
A secure SMS Messaging platform allowing your business to send bulk SMS Messages to your clients
Support us
Installation
You can install the package via composer:
composer require loopcraft/msgowl
You can publish the config file with:
php artisan vendor:publish --tag="msgowl-config"
This is the contents of the published config file:
return [ 'sender' => env('MSG_OWL_SENDER'), //required 'urls' => [ 'otp' => env('MSG_OWL_OTP_URL', 'https://otp.msgowl.com'), 'rest' => env('MSG_OWL_REST_URL', 'https://rest.msgowl.com'), ], 'keys' => [ 'rest_key' => env('MSG_OWL_REST_KEY'), //required 'otp_key' => env('MSG_OWL_OTP_KEY'), //required ], 'notification' => [ 'active' => env('MSG_OWL_NOTIFICATION_ACTIVE', true), 'threshold' => 50, 'contact_number' => env('MSG_OWL_SMS_NUMBER'), //required if notification active is true 'message' => env('MSG_OWL_SMS_MSG', 'Your MsgOwl balance is getting low'), ], ];
Usage
MsgOwl::sendMessage('body of sms needed to send','960123456,9603212...',);
Testing
composer test
Credits
- Write test
- Add OTP support
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.
Credits
License
The MIT License (MIT). Please see License File for more information.