elitan / telavox-api-php-client
There is no license information available for the latest version (v0.0.3) of this package.
A PHP client library for accessing Telavox API
v0.0.3
2017-11-25 13:52 UTC
Requires
- php: >=5.3.0
- guzzlehttp/guzzle: 6.3.0
This package is not auto-updated.
Last update: 2025-05-11 06:10:38 UTC
README
Install
composer require elitan/telavox-api-php-client
Example usage
<?php
require_once __DIR__ . '/vendor/autoload.php';
$api_host = 'https://api.telavox.se';
$telavox_username = '08123123123';
$telavox_password = 'secretpassword';
$telavox = new \Telavox\Telavox($api_host, $telavox_username, $telavox_password);
$calls = $telavox->calls();
var_dump($calls);
$telavox->dail('0046771567567');