superbalist / php-panaceamobile
This package is abandoned and no longer maintained.
No replacement package was suggested.
An API client for sending SMSs via the Panacea Mobile API'
1.0.0
2016-10-07 09:48 UTC
Requires
- php: >=5.6.0
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- mockery/mockery: ^0.9.5
- phpunit/phpunit: ^5.6
This package is auto-updated.
Last update: 2024-08-12 00:37:43 UTC
README
An API client for sending SMSs via the Panacea Mobile API
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);