flexyproject/githubapi

This package is abandoned and no longer maintained. The author suggests using the knplabs/github-api package instead.

PHP7 Client & WebHook wrapper for GitHub API v3

1.1.4 2018-02-12 00:15 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:56:28 UTC


README

Latest Stable Version Total Downloads License Build Status Scrutinizer Code Quality

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.

Requirements

Quick Start

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

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.