A PHP wrapper to be used with Gitlab's API.
Forked from php-gitlab-api and based on php-github-api and code from KnpLabs.
Using composer:
composer require jeroeny/gitlab-api
You can visit HTTPlug for library users to get more information about installing HTTPlug related packages.
$client = \Gitlab\Client::create('http://git.yourdomain.com')
->authenticate('your_gitlab_token_here', \Gitlab\Client::AUTH_URL_TOKEN)
;
// or for OAuth2 (see https://github.com/m4tthumphrey/php-gitlab-api/blob/master/lib/Gitlab/HttpClient/Plugin/Authentication.php#L47)
$client = \Gitlab\Client::create('http://gitlab.yourdomain.com')
->authenticate('your_gitlab_token_here', \Gitlab\Client::AUTH_OAUTH_TOKEN)
;
$project = $client->api('projects')->create('My Project', array(
'description' => 'This is a project',
'issues_enabled' => false
));
to fetch all your closed issue with pagination ( on the gitlab api )
$client = \Gitlab\Client::create('http://git.yourdomain.com')
->authenticate('your_gitlab_token_here', \Gitlab\Client::AUTH_URL_TOKEN)
;
$pager = new \Gitlab\ResultPager($client);
$issues = $pager->fetchAll($client->api('issues'),'all',[null, ['state' => 'closed']]);
You can also use the library in an object oriented manner:
$client = \Gitlab\Client::create('http://git.yourdomain.com')
->authenticate('your_gitlab_token_here', \Gitlab\Client::AUTH_URL_TOKEN)
;
# Creating a new project
$project = \Gitlab\Model\Project::create($client, 'My Project', array(
'description' => 'This is my project',
'issues_enabled' => false
));
$project->addHook('http://mydomain.com/hook/push/1');
# Creating a new issue
$project = new \Gitlab\Model\Project(1, $client);
$issue = $project->createIssue('This does not work.', array(
'description' => 'This doesn\'t work properly. Please fix.',
'assignee_id' => 2
));
# Closing that issue
$issue->close();
You get the idea! Take a look around (API methods, models) and please feel free to report any bugs.
- Symfony - https://github.com/Zeichen32/GitLabApiBundle
- Laravel - https://github.com/GrahamCampbell/Laravel-GitLab
If you have integrated GitLab into a popular PHP framework, let us know!
Feel free to fork and add new functionality and/or tests, I'll gladly accept decent pull requests.