Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mcmatters/gitlab-api
- Owner: MCMatters
- Created: 2017-10-16T13:11:36.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-19T21:12:09.000Z (over 3 years ago)
- Last Synced: 2024-04-20T20:21:41.040Z (8 months ago)
- Topics: api-client, gitlab, gitlab-api, gitlab-webhook, package, php-client, php7
- Language: PHP
- Homepage:
- Size: 170 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```