cyrildewit/laravel-silent-authentication
Composer 安装命令:
composer require cyrildewit/laravel-silent-authentication
包简介
Silent authentication methods for Laravel
README 文档
README
This Laravel >= 5.5 package allows you to silently authenticate users.
Overview
I created this package for personal usage. It's based on insights from other open source packages and online blog posts.
Documentation
In this documentation, you will find some helpful information about the use of this Laravel package.
Table of contents
Getting Started
Requirements
This package requires PHP 7.1+ and Laravel 5.5+.
Lumen is not supported!
Version information
| Version | Illuminate | Status | PHP Version |
|---|---|---|---|
| 1.0 | 5.5 - 5.7 | Active support | >= 7.1.0 |
Installation
First, you need to install the package via Composer:
composer require cyrildewit/laravel-silent-authentication
You can optionally publish the config file with:
php artisan vendor:publish --provider="CyrildeWit\LaravelSilentAuthentication\SilentAuthenticationServiceProvider" --tag="config"
Register service provider manually
If you prefer to register packages manually, you can add the following provider to your application's providers list.
// config/app.php 'providers' => [ // ... CyrildeWit\LaravelSilentAuthentication\SilentAuthenticationServiceProvider::class, ];
Usage
Default setup
This package will overwrite the default SessionGuard by default. The customized session guard uses the SilentAuthentication trait which will allow you silently authenticate users.
If you're not interesting in this default or if it's breaking your application, you can disable it in the config file.
SilentAuthentication trait
If you're already overwriting the default SessionGuard in your application, you can simply implement the SilentAuthentication trait.
use Illuminate\Auth\SessionGuard as BaseSessionGuard; use CyrildeWit\LaravelSilentAuthentication\Guards\Traits\SilentAuthentication; class SessionGuard extends BaseSessionGuard { use SilentAuthentication; }
Changelog
Please see CHANGELOG for more information on what has changed recently.
License
This project is licensed under the MIT License - see the LICENSE.md file for details.
cyrildewit/laravel-silent-authentication 适用场景与选型建议
cyrildewit/laravel-silent-authentication 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 117 次下载、GitHub Stars 达 3, 最近一次更新时间为 2019 年 02 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Authentication」 「login」 「laravel」 「logout」 「silent」 「no events」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 cyrildewit/laravel-silent-authentication 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cyrildewit/laravel-silent-authentication 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 cyrildewit/laravel-silent-authentication 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
WeChat OAuth SDK
Automatically logs-in users if they are already authenticated by a remote source. (e.g. environment variable REMOTE_USER)
GraphQL authentication for your headless Craft CMS applications.
Debugging a problem and need to login as one of your customers? This allows you to authenticate as any of your customers.
Laravel middleware to restrict a site or specific routes using HTTP basic authentication
Email Toolkit Plugin for CakePHP
统计信息
- 总下载量: 117
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-02-09