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

dev-main 2023-01-05 13:15 UTC

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()