Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://gitlab.com/aochoae/gitlab-api-php
Automate GitLab via a simple and powerful API.
https://gitlab.com/aochoae/gitlab-api-php
api git gitlab gitlab-api rest
Last synced: about 1 month ago
JSON representation
Automate GitLab via a simple and powerful API.
- Host: gitlab.com
- URL: https://gitlab.com/aochoae/gitlab-api-php
- Owner: aochoae
- License: mit
- Created: 2019-05-08T04:33:11.558Z (over 5 years ago)
- Default Branch: main
- Last Synced: 2024-09-30T03:05:15.315Z (about 2 months ago)
- Topics: api, git, gitlab, gitlab-api, rest
- Stars: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GitLab API
Automate GitLab via a simple and powerful API.
## Requirements
* GitLab version 14.7 or greater
* PHP version 7.4 or greater## Install
composer require luisalberto/gitlab:dev-main
## Usage
true,
'headers' => [
'PRIVATE-TOKEN' => 'your-private-token'
]
]);$projects = new \GitLab\Projects\Projects($client);
$response = $projects->getProject(12345678);echo $response->getBody()->getContents();
## License
See [LICENSE](LICENSE) for the full license text.