kobermeit/github
Composer 安装命令:
composer require kobermeit/github
包简介
GitHub Is A GitHub Bridge For Laravel 5
关键字:
README 文档
README
Laravel GitHub was created by, and is maintained by Graham Campbell, and is a PHP GitHub API bridge for Laravel 5. It utilises my Laravel Manager package. Feel free to check out the change log, releases, license, and contribution guidelines.
Installation
Either PHP 5.5+ or HHVM 3.6+ are required.
To get the latest version of Laravel GitHub, simply require the project using Composer:
$ composer require graham-campbell/github php-http/guzzle6-adapter
As an example, I've used the php-http/guzzle6-adapter, but you may install any package that "provides" php-http/client-implementation.
Instead, you may of course manually update your require block and run composer update if you so choose:
{
"require": {
"graham-campbell/github": "^5.0",
"php-http/guzzle6-adapter": "^1.1"
}
}
You will also need to install madewithlove/illuminate-psr-cache-bridge if you'd like to use caching.
Once Laravel GitHub is installed, you need to register the service provider. Open up config/app.php and add the following to the providers key.
'GrahamCampbell\GitHub\GitHubServiceProvider'
You can register the GitHub facade in the aliases key of your config/app.php file if you like.
'GitHub' => 'GrahamCampbell\GitHub\Facades\GitHub'
Configuration
Laravel GitHub requires connection configuration.
To get started, you'll need to publish all vendor assets:
$ php artisan vendor:publish
This will create a config/github.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases.
There are two config options:
Default Connection Name
This option ('default') is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is 'main'.
GitHub Connections
This option ('connections') is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like. Note that the 3 supported authentication methods are: "application", "password", and "token".
Usage
GitHubManager
This is the class of most interest. It is bound to the ioc container as 'github' and can be accessed using the Facades\GitHub facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of my Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repo. Note that the connection class returned will always be an instance of \Github\Client.
Facades\GitHub
This facade will dynamically pass static method calls to the 'github' object in the ioc container which by default is the GitHubManager class.
GitHubServiceProvider
This class contains no public methods of interest. This class should be added to the providers array in config/app.php. This class will setup ioc bindings.
Real Examples
Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main. After you enter your authentication details in the config file, it will just work:
use GrahamCampbell\GitHub\Facades\GitHub; // you can alias this in config/app.php if you like GitHub::me()->organizations(); // we're done here - how easy was that, it just works! GitHub::repo()->show('GrahamCampbell', 'Laravel-GitHub'); // this example is simple, and there are far more methods available
The github manager will behave like it is a \Github\Client class. If you want to call specific connections, you can do with the connection method:
use GrahamCampbell\GitHub\Facades\GitHub; // the alternative connection is the other example provided in the default config GitHub::connection('alternative')->me()->emails()->add('foo@bar.com'); // now we can see the new email address in the list of all the user's emails GitHub::connection('alternative')->me()->emails()->all();
With that in mind, note that:
use GrahamCampbell\GitHub\Facades\GitHub; // writing this: GitHub::connection('main')->issues()->show('GrahamCampbell', 'Laravel-GitHub', 2); // is identical to writing this: GitHub::issues()->show('GrahamCampbell', 'Laravel-GitHub', 2); // and is also identical to writing this: GitHub::connection()->issues()->show('GrahamCampbell', 'Laravel-GitHub', 2); // this is because the main connection is configured to be the default GitHub::getDefaultConnection(); // this will return main // we can change the default connection GitHub::setDefaultConnection('alternative'); // the default is now alternative
If you prefer to use dependency injection over facades like me, then you can easily inject the manager like so:
use GrahamCampbell\GitHub\GitHubManager; use Illuminate\Support\Facades\App; // you probably have this aliased already class Foo { protected $github; public function __construct(GitHubManager $github) { $this->github = $github; } public function bar() { $this->github->issues()->show('GrahamCampbell', 'Laravel-GitHub', 2); } } App::make('Foo')->bar();
For more information on how to use the \Github\Client class we are calling behind the scenes here, check out the docs at https://github.com/KnpLabs/php-github-api/tree/master/doc, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage.
Further Information
There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package.
Security
If you discover a security vulnerability within this package, please send an e-mail to Graham Campbell at graham@alt-three.com. All security vulnerabilities will be promptly addressed.
License
Laravel GitHub is licensed under The MIT License (MIT).
kobermeit/github 适用场景与选型建议
kobermeit/github 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.48k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 03 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「github」 「Bridge」 「laravel」 「Graham Campbell」 「GrahamCampbell」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 kobermeit/github 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kobermeit/github 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 kobermeit/github 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Handles basic OAuth/OAuth2 authentication along with classes for common services
Soluble PHP Java bridge integration
Bridge between JMS Serializer Bundle and Superdesk Web Publisher.
MediaWiki extension that allows embedding external content, specified by URL, into your wiki pages
Builds a Bridge between Zend Expressive and Plugin Managers of Zend\MVC
统计信息
- 总下载量: 1.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-16