balfour / php-smsportal
An API client for sending SMSs via the SmsPortal API
1.0.1
2021-07-29 12:06 UTC
Requires
- ext-json: *
- guzzlehttp/guzzle: ^6.3
- psr/cache: ^1.0
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^5.7
This package is auto-updated.
Last update: 2025-03-29 00:47:27 UTC
README
An API client for sending SMS via the SmsPortal API.
Installation
composer require balfour/php-smsportal
Usage
use Balfour\SmsPortal\SmsPortalClient; use GuzzleHttp\Client; $guzzle = new Client(); $client = new SmsPortalClient( $guzzle, null, // PSR-6 CacheItemPoolInterface '[your client id]', '[your secret]' ); $resp = $client->sendMessage( '+27000000000', 'This is a test message.' );
If you pass an implementation of a PSR-6 CacheItemPoolInterface, the authentication token will be cached and used for subsequent requests.