Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mcmatters/gitlab-api

Gitlab API Client
https://github.com/mcmatters/gitlab-api

api-client gitlab gitlab-api gitlab-webhook package php-client php7

Last synced: 21 days ago
JSON representation

Gitlab API Client

Awesome Lists containing this project

README

        

## GitLab API PHP client

### Installation

```bash
composer require mcmatters/gitlab-api
```

### Usage

```php
group()->epic()->list(1);
$mergeRequests = $client->project()->mergeRequest()->list(1);
$queueMetrics = $client->standalone()->sidekiqMetric()->queueMetrics();
$starredProjects = $client->user()->project()->listStarred(1);
$dockerTemplates = $client->template()->dockerfile()->list();
```