Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jrschumacher/silex-provider-gitlab

Silex provider for Gitlab (See: https://github.com/m4tthumphrey/php-gitlab-api)
https://github.com/jrschumacher/silex-provider-gitlab

Last synced: about 2 hours ago
JSON representation

Silex provider for Gitlab (See: https://github.com/m4tthumphrey/php-gitlab-api)

Awesome Lists containing this project

README

        

Gitlab Silex Provider
================================

Gitlab service provider for silex micro-framework. Check here: https://github.com/m4tthumphrey/php-gitlab-api

## Example

``` php
register(new GitlabServiceProvider(), array(
"gitlab.url" => $url,
"gitlab.key" => $key
));

$app['gitlab']->api('projects')->show();
```

## Install with Composer

``` json
{
"require": {
"jrschumacher/silex-provider-gitlab": "~0.0"
}
}
```