Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/jrschumacher/silex-provider-gitlab
- Owner: jrschumacher
- License: mit
- Created: 2014-06-13T01:43:48.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-13T02:37:34.000Z (over 10 years ago)
- Last Synced: 2024-10-09T22:23:08.813Z (about 1 month ago)
- Language: PHP
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
```