zeichen32 / gitlabapi
Gitlab api php wrapper
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/zeichen32/gitlabapi
Requires
- php: >=5.3.0
- kriswallsmith/buzz: *
Suggests
- zeichen32/gitlabapibundle: Include the gitlab issue tracker in your symfony2 project.
This package is auto-updated.
Last update: 2020-04-29 12:01:56 UTC
README
PHP Library for easy access to the gitlab api.
This library is currently in development, so no stable release is available.
If you are looking for stable library, you should take a look at: https://github.com/m4tthumphrey/php-gitlab-api
Usage
$browser = new \Buzz\Browser(); $client = new \GitLab\Client($browser, 'your-key', 'http://your-gitlab-server.com'); // Api calls var_dump($client->api('user')->getUsers()); var_dump($client->api('issues')->getIssues()); // The Alternative way $issue_api = new \GitLab\Api\IssueApi($client); var_dump($issue_api->getIssues());