GitHub - kenichiii/GitHubAPI: This is a Client and WebHook wrapper for GitHub API v3, written with PHP5.
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.

// 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();
