rohimma/socialiteprovider-eveonline
Composer 安装命令:
composer require rohimma/socialiteprovider-eveonline
包简介
EVE Online OAuth2 Provider for Laravel Socialite
README 文档
README
A Laravel Socialite provider for EVE Online SSO.
Installation
1. Composer
// This assumes that you have composer installed globally
composer require jrtashjian/socialiteproviders-eveonline
2. Service Provider
- Remove
Laravel\Socialite\SocialiteServiceProviderfrom yourproviders[]array inconfig\app.phpif you have added it already. - Add
\SocialiteProviders\Manager\ServiceProvider::classto yourproviders[]array inconfig\app.php.
For Example:
'providers' => [
// a whole bunch of providers
// remove 'Laravel\Socialite\SocialiteServiceProvider',
\SocialiteProviders\Manager\ServiceProvider::class, // add
];
3. Add the Event and Listeners
- Add
SocialiteProviders\Manager\SocialiteWasCalledevent to yourlisten[]array in<app_name>/Providers/EventServiceProvider. - Add your listeners (i.e. the ones from the providers) to the
SocialiteProviders\Manager\SocialiteWasCalled[]that you just created. - The listener that you add for this provider is
'SocialiteProviders\EveOnline\EveOnlineExtendSocialite@handle',. - Note: You do not need to add anything for the built-in socialite providers unless you override them with your own providers.
For example:
/**
* The event handler mappings for the application.
*
* @var array
*/
protected $listen = [
\SocialiteProviders\Manager\SocialiteWasCalled::class => [
// add your listeners (aka providers) here
'SocialiteProviders\EveOnline\EveOnlineExtendSocialite@handle',
],
];
4. Environment Variables
If you add environment values to your .env as exactly shown below, you do not need to add an entry to the services array.
Append provider values to your .env file
// other values above
EVEONLINE_KEY=yourkeyfortheservice
EVEONLINE_SECRET=yoursecretfortheservice
EVEONLINE_REDIRECT_URI=https://example.com/login
Add to config/services.php.
You do not need to add this if you add the values to the .env exactly as shown above. The values below are provided as a convenience in the case that a developer is not able to use the .env method
'eveonline' => [
'client_id' => env('EVEONLINE_KEY'),
'client_secret' => env('EVEONLINE_SECRET'),
'redirect' => env('EVEONLINE_REDIRECT_URI'),
],
Usage
You should now be able to use it like you would regularly use Socialite (assuming you have the facade installed):
return Socialite::driver('eveonline')->redirect();
Issues
If you have any issues using this package, create a new Issue.
License
This code is licensed under the MIT License.
rohimma/socialiteprovider-eveonline 适用场景与选型建议
rohimma/socialiteprovider-eveonline 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 03 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 rohimma/socialiteprovider-eveonline 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rohimma/socialiteprovider-eveonline 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-01