superjob / devino-viber
There is no license information available for the latest version (0.1.6) of this package.
Devino Viber HTTP Client
0.1.6
2018-08-22 08:31 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- phpunit/phpunit: ^6.2
This package is not auto-updated.
Last update: 2026-03-15 12:13:18 UTC
README
Простой клиент для работы с Devino Viber HTTP API.
Документация по API: http://devino-documentation.readthedocs.io/viber-resender.html
Установка
composer require superjob/devino-viber
Применение
$guzzle = new Client(); $client = new ViberClient($guzzle, 'login', 'password'); $client->send([new Message('79xxxxxxxx', 'Sender', 'Lorem ipsum', new TextContent('Text content'))]);
вернет что-то вроде
array(1) {
[0] =>
class superjob\devino\message\SendResponse#23 (2) {
protected $code =>
string(2) "ok"
protected $providerId =>
string(19) "3231334966948265985"
}
}