php-github-api
php-github-api copied to clipboard
A simple PHP GitHub API client, Object Oriented, tested and documented.
| Q | A | ------------- | --- | New feature? | ✔️ | Fixed issues | #1083
Is there such functionality or possibility to add it? https://docs.github.com/en/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository
Add Secrets Scanning Alerts for Entreprise, Organizations and Repository https://docs.github.com/en/[email protected]/rest/secret-scanning#list-secret-scanning-alerts-for-an-enterprise call : Sprintf("enterprises/%v/secret-scanning/alerts", %enterprise) https://docs.github.com/en/[email protected]/rest/secret-scanning#list-secret-scanning-alerts-for-an-organization call : Sprintf("orgs/%v/secret-scanning/alerts", %org) https://docs.github.com/en/[email protected]/rest/secret-scanning#list-secret-scanning-alerts-for-a-repository call : Sprintf("repos/%v/%v/secret-scanning/alerts", owner, repo)
Unless I'm not understanding something correctly, it appears that some of the code samples in doc/repo/contents.md are incorrect. For example, in the https://github.com/KnpLabs/php-github-api/blob/master/doc/repo/contents.md#get-information-about-a-repository-file-or-directory section, is `->contents()` necessary/correct? In fact, is...
When looking at Github's documentation, https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-repository-activities, there is an endpoint `https://api.github.com/repos/OWNER/REPO/activity` Good to have it implemented. PS: do you have t tutorial on how to modify an existing bundle? Bescause...
API description: https://docs.github.com/en/rest/dependabot/alerts?apiVersion=2022-11-28#list-dependabot-alerts-for-an-organization
There's a deprecation warning triggered by this library because it's using 1.x of the php-http/cache-plugin I think if you simply allowed either ^1.7 || ^2.0 it could use the later...
would be great to have the reactions endpoint supported. https://docs.github.com/en/rest/reactions/reactions if I did not miss something, this seems not yet supported
I wonder whether there is a supported way to parse/retrieve references to issues/pull requests from pull request body descriptions like github.com supports using e.g. `closes #123` all official keywords are...