php-github-api
php-github-api copied to clipboard
A simple PHP GitHub API client, Object Oriented, tested and documented.
I see that merging a pull request is possible but I couldn't find it in the docs in this repo. Is the document not updated or the feature itself is...
I'm not sure this should actually be implemented in this repo, as it is different from other use cases, but maintainers might still decide it fits this repository. When implementing...
For example current user api handler [link](https://github.com/KnpLabs/php-github-api/blob/master/lib/Github/Api/CurrentUser.php#L122) in `type` field has `owner` value as default but according github api we [link](https://developer.github.com/v3/repos/#list-your-repositories) have `all` as default. P.S If necessary, I can...
Does this library support the [User migrations API](https://developer.github.com/v3/migrations/users/)? I can not seem to find any documentation related to it.
Hello ! I'm working on a project requiring **GitHub Events API**: https://developer.github.com/v3/activity/events/ Is this a feature that can be included in the scope of this package ? There is currently...
I'm, always getting the `"Not found"` error on my api calls. Tried investigating and found this on the $request passed to the `RequestInterface::sendRequest()` method: ``` Request {#346 ▼ -method: "GET"...
See https://platform.github.community/t/pagination-differs-in-installations-api/1862 The result is an array with a count field and and subarray of all installations but we merge result when using the fetchAll method We need to check...
API classes should be immutable to avoid any unexpected behavior.
Is there any support for: https://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received https://developer.github.com/v3/activity/events/#list-events-performed-by-a-user I could not find any methods for this. If there is not will it be soon? If I start doing it do I...