solunobc/solunobc

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 0

Open Issues: 1

Type:api-wrapper

dev-master 2017-12-22 16:52 UTC

This package is not auto-updated.

Last update: 2024-04-20 12:56:21 UTC


README

Installation

$ composer require solunobc/solunobc

Usage

$options = [
    'username' => 'user@example.org',
    'password' => 's3cret',
];
$soluno = new \SolunoBC\SolunoBC($options);
$soluno->setHttpClient($httpClient); // $client is a \Http\Client\HttpClient
$message = new \SolunoBC\Message('test', '+4611111111', ['+4622222222']);
$soluno->sendSms($message);