Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tustin/byte-php

A comprehensive PHP library for interacting with the byte API.
https://github.com/tustin/byte-php

android byte byteapp ios vine

Last synced: 16 days ago
JSON representation

A comprehensive PHP library for interacting with the byte API.

Awesome Lists containing this project

README

        

# byte-php

A comprehensive PHP library for interacting with the byte API.

## Installation

Pull in the project with Composer:

`composer require tustin/byte-php`

## Usage

To get started, here's a simple script:

```php
require_once 'vendor/autoload.php';

use \Tustin\Byte\Client;

// You can pass any Guzzle options into Client.
$client = new Client();

$client->login('');

// Output all the data for your account.
var_dump($client->accounts()->me());
```