jrschumacher / silex-provider-gitlab
Silex provider for Gitlab API (m4tthumphrey/php-gitlab-api)
Package info
github.com/jrschumacher/silex-provider-gitlab
pkg:composer/jrschumacher/silex-provider-gitlab
0.1
2014-06-13 02:24 UTC
Requires
- m4tthumphrey/php-gitlab-api: *
- silex/silex: >=1.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2026-03-10 07:33:20 UTC
README
Gitlab service provider for silex micro-framework. Check here: https://github.com/m4tthumphrey/php-gitlab-api
Example
<?php use Silex\Application; $url = 'http://gitlab.example.com/api/v3'; $key = 'key'; $app = new Application(); $app->register(new GitlabServiceProvider(), array( "gitlab.url" => $url, "gitlab.key" => $key )); $app['gitlab']->api('projects')->show();
Install with Composer
{
"require": {
"jrschumacher/silex-provider-gitlab": "~0.0"
}
}