superbalist/php-panaceamobile

An API client for sending SMSs via the Panacea Mobile API'

1.0.0 2016-10-07 09:48 UTC

This package is auto-updated.

Last update: 2024-04-12 00:03:22 UTC


README

An API client for sending SMSs via the Panacea Mobile API

Author Build Status StyleCI Software License Packagist Version Total Downloads

Installation

composer require superbalist/php-panaceamobile

Integrations

Want to get started quickly? Check out some of these integrations:

Usage

$username = 'your_username';
$password = 'your_password';

$guzzleClient = new \GuzzleHttp\Client();

$client = new \Superbalist\PanaceaMobile\PanaceaMobileAPI($guzzleClient, $username, $password);

$response = $client->sendMessage('+27000000000', 'This is a test message.');
var_dump($response);