bobach22 / rapidprosms
Package to use sms services
Installs: 161
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/bobach22/rapidprosms
Requires
- php: >=7.1.3
- guzzlehttp/guzzle: ^6.5|^7.0.1
- illuminate/support: ^7.0|^8.12
Requires (Dev)
- orchestra/testbench: 5.0
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-12-04 04:43:23 UTC
README
Installation
You can install the package via composer:
composer require bobach22/smsclient
Publishing required files of package:
php artisan vendor:publish --provider="Bobach22\SmsClient\SmsServiceProvider"
In config folder set params for sms.php
Usage
use Bobach22\SmsClient\Facades\Sms; $sms=Sms::send('any number','your message'); // with array of numbers // Sms::send(['number1','number2'],'your message') $res=$sms->response()