Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.78 KB

File metadata and controls

35 lines (29 loc) · 1.78 KB

Scion: Wrapper for GitHub API v3

This is a simple Object Oriented wrapper for GitHub API v3, written with PHP5.
This library works with cURL and provides all documented functionality as described in the official documentation including Client and WebHooks.
Scrutinizer Code Quality Build Status

Requirements

Quick Start

// Create a client object
$client = new \Scion\GitHub\Client();

// Miscellaneous
$miscellaneous = $client->getReceiver(\Scion\GitHub\Client::MISCELLANEOUS);

// Lists all the emojis available to use on GitHub.
$emojis = $miscellaneous->getReceiver(\Scion\GitHub\Receiver\Miscellaneous::EMOJIS);
$emojis->get();

Documentation

The full documentation is available in the wiki section.

License

The files in this archive are released under the GNU Lesser GPL v3 license.