Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tustin/byte-php
- Owner: Tustin
- Created: 2020-01-25T18:49:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T19:26:31.000Z (over 1 year ago)
- Last Synced: 2024-05-02T03:53:10.118Z (8 months 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());
```