appiersign / hubtel-sms
API client that consumes Hubtel's SMS API
Installs: 630
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/appiersign/hubtel-sms
Requires
- php: >=7.0
- ext-json: *
- guzzlehttp/guzzle: ^7.0
This package is not auto-updated.
Last update: 2025-10-08 04:39:12 UTC
README
A composer package that integrates Hubtel's SMS API. This version only supports sending single SMS.
Install package with the code below:
composer require appiersign/hubtel-sms
Import and Create an instance of the sender class
use AppierSign\HubtelSMS\HubtelSMS;
$sms = new HubtelSMS($apiId, $apiSecret, $senderId)
Call send() on the instance and pass the phone number and message as seen below:
$response = $sms->send('2332496xxxxx', 'your text message');