https://github.com/osenco/bongasms
Bonga SMS PHP SDK
https://github.com/osenco/bongasms
api bonga bongasms otp sms
Last synced: 4 months ago
JSON representation
Bonga SMS PHP SDK
- Host: GitHub
- URL: https://github.com/osenco/bongasms
- Owner: osenco
- License: mit
- Created: 2021-01-17T08:23:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-24T08:15:48.000Z (over 5 years ago)
- Last Synced: 2025-08-14T19:24:34.458Z (10 months ago)
- Topics: api, bonga, bongasms, otp, sms
- Language: PHP
- Homepage: https://bongasms.co.ke
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bonga SMS
Bonga SMS PHP SDK
## Installation
Install via composer
```cmd
composer require osenco/bongasms
```
## Instantiation
Pass the apiClientID, key, secret in the class constructor
```php
$sms = new Osen\Bonga\Sms($apiClientID, $key, $secret);
```
## Usage
### Send SMS
```php
$sms->send($phone, $message);
```