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: about 2 months ago
JSON representation
A comprehensive PHP library for interacting with the byte API.
- Host: GitHub
- URL: https://github.com/tustin/byte-php
- Owner: Tustin
- Created: 2020-01-25T18:49:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T19:26:31.000Z (about 3 years ago)
- Last Synced: 2025-02-09T23:38:07.282Z (over 1 year ago)
- Topics: android, byte, byteapp, ios, vine
- Language: PHP
- Size: 24.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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());
```