elitan / telavox-api-php-client
A PHP client library for accessing Telavox API
Installs: 226
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/elitan/telavox-api-php-client
Requires
- php: >=5.3.0
- guzzlehttp/guzzle: 6.3.0
This package is not auto-updated.
Last update: 2025-10-26 08:32:59 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');