A comprehensive PHP library for interacting with the byte API.
Pull in the project with Composer:
composer require tustin/byte-php
To get started, here's a simple script:
require_once 'vendor/autoload.php';
use \Tustin\Byte\Client;
// You can pass any Guzzle options into Client.
$client = new Client();
$client->login('<byte authorization token>');
// Output all the data for your account.
var_dump($client->accounts()->me());