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

Installs: 226

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/elitan/telavox-api-php-client

v0.0.3 2017-11-25 13:52 UTC

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');