Gogs PHP API Client is a client written in PHP, to easily query a Gogs (Go Git Service) API client.
Joachim M. Giæver 183cf0dfc9 rewrite | %!s(int64=7) %!d(string=hai) anos | |
---|---|---|
client | %!s(int64=7) %!d(string=hai) anos | |
lib | %!s(int64=7) %!d(string=hai) anos | |
.gitignore | %!s(int64=7) %!d(string=hai) anos | |
LICENSE | %!s(int64=7) %!d(string=hai) anos | |
README.md | %!s(int64=7) %!d(string=hai) anos | |
index.php | %!s(int64=7) %!d(string=hai) anos |
A client to query Gogs (https://gogs.io) API from PHP.
A guide on how to use will come shortly!
Clone the repo. Set the API_URL
and API_TOKEN
in the index-file.
```php
$client = new \Client\GogsAPI(API_URL, API_TOKEN);
$me = $client->user(); $other = $client->user("username");
$repos = $me->get("/repos")->load();
// Loop through every repo for($repo = $repos->current(); $repo != false; $repo = $repos->next())
var_dump($repo);