nandwabee / africastalking
A composer package for the Africa's talking mobile API's
Requires
- giggsey/libphonenumber-for-php: ^7.2
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: 4.8.*
This package is not auto-updated.
Last update: 2025-01-27 08:29:45 UTC
README
This is another look at the AfricasTalking API for PHP.
I wrote it to meet a personal project need and it should suffice for many other use cases.
Requirements
The main difference between this code and the official wrapper is that I opted to go for guzzle instead of hard dependency on Curl.
- Guzzle
- PHP 5.5.0 or newer. PHP 7 is currently not tested.
Be sure to checkout Guzzle's own dependencies.
Documentation
Install using composer.
composer require nandwabee/africastalking
Sending Messages
An sms can be sent out by calling the send()
method.
The send method returns an array when a message is sent successfully.
Example code below ;
//Instantiate the object. $obj = new AfricasTalking('my_username','my_key'); $response = $obj->send($to,$message,$options); //Do something with the array
Parameters
$to
: array This is an array of the numbers to send the messages to.
$message
: string The message to be sent.
$options
: array An array of optional parameters.
The options parameter allows the following parameters;
from,bulkSMSMode,enqueue,keyword,linkId,retryDurationInHours
The expected values for either of those parameters can be found on the AfricasTalking API Docs
Todo
Exception handling
Fetching User Details
Contribution
This is an open source project so all ideas to help make this a better tool for other developers are highly welcome.
Try as much as possible to stick to the PSR-4 standards.
Waiting for the pull requests :-)
##TODO
- Support phone calls
- Receive SMS messages
- Support to Premium rate SMS services
- Create a sample Laravel 5 package
- Update the documentation with sample code
- Support for USSD
- Write tests
- Support for airtime transactions
- Fetch User data
- Improve exception handling.