This is a simple Object Oriented wrapper for GitHub API v3, written with PHP7.
This library works with cURL and provides all documented functionality as described in the official documentation including Client and WebHooks.
- PHP >= 7
- cURL extension
- symfony/http-foundation
- flexyproject/curl
// Create a client object
$client = new \FlexyProject\GitHub\Client();
// Miscellaneous
$miscellaneous = $client->getReceiver(\FlexyProject\GitHub\Client::MISCELLANEOUS);
// Lists all the emojis available to use on GitHub.
$emojis = $miscellaneous->getReceiver(\FlexyProject\GitHub\Receiver\Miscellaneous::EMOJIS);
$emojis->get();
The full documentation is available in the wiki section.
The files in this archive are released under the GNU Lesser GPL v3 license.