jrschumacher / silex-provider-gitlab
Silex provider for Gitlab API (m4tthumphrey/php-gitlab-api)
Installs: 1 148
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- m4tthumphrey/php-gitlab-api: *
- silex/silex: >=1.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-11-05 01:17:21 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" } }