承接 laravel-auto/sso 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

laravel-auto/sso

Composer 安装命令:

composer require laravel-auto/sso

包简介

Simple PHP SSO integration for Laravel

README 文档

README

Latest Stable Version Total Downloads Latest Unstable Version License

This package based on Simple PHP SSO skeleton package and made suitable for Laravel framework.

Requirements

  • Laravel 10.0+
  • PHP 7.4+

Words meanings

  • SSO - Single Sign-On.
  • Server - page which works as SSO server, handles authentications, stores all sessions data.
  • Broker - your page which is used visited by clients/users.
  • Client/User - your every visitor.

How it works?

Client visits Broker and unique token is generated. When new token is generated we need to attach Client session to his session in Broker so he will be redirected to Server and back to Broker at this moment new session in Server will be created and associated with Client session in Broker's page. When Client visits other Broker same steps will be done except that when Client will be redirected to Server he already use his old session and same session id which associated with Broker#1.

Installation

Server

Install this package using composer.

$ composer require laravel-auto/sso

Copy config file to Laravel project config/ folder.

$ php artisan vendor:publish --provider="LaravelAuto\Sso\SingleSignOnServiceProvider"

Create table where all brokers will be saved.

$ php artisan migrate --path=vendor/laravel-auto/sso/database/migrations

Edit your app/Http/Kernel.php by removing throttle middleware and adding sessions middleware to api middlewares array. This is necessary because we need sessions to work in API routes and throttle middleware can block connections which we need.

'api' => [
    'bindings',
    \Illuminate\Session\Middleware\StartSession::class,
],

Now you should create brokers. You can create new broker using following Artisan CLI command:

$ php artisan sso:broker:create {name}

Broker

Install this package using composer.

$ composer require laravel-auto/sso

Copy config file to Laravel project config/ folder.

$ php artisan vendor:publish --provider="LaravelAuto\Sso\SingleSignOnServiceProvider"

Change type value in config/laravel-sso.php file from server to broker.

Set 3 new options in your .env file:

SSO_SERVER_URL=
SSO_BROKER_NAME=
SSO_BROKER_SECRET=

SSO_SERVER_URL is your server's http url without trailing slash. SSO_BROKER_NAME and SSO_BROKER_SECRET must be data which exists in your server's brokers table.

Edit your app/Http/Kernel.php by adding \LaravelAuto\Sso\Middleware\SingleSignOnVerification::class middleware to web middleware group. It should look like this:

protected $middlewareGroups = [
        'web' => [
            ...
            \LaravelAuto\Sso\Middleware\SingleSignOnVerification::class,
        ],

        'api' => [
            ...
        ],
    ];

Last but not least, you need to edit app/Http/Controllers/Auth/LoginController.php. You should add two functions into LoginController class which will authenticate your client through SSO server but not your Broker page.

protected function attemptLogin(Request $request)
{
    $broker = new \LaravelAuto\Sso\SingleSignOnBroker;
    
    $credentials = $this->credentials($request);
    return $broker->login($credentials[$this->username()], $credentials['password']);
}

public function logout(Request $request)
{
    $broker = new \LaravelAuto\Sso\SingleSignOnBroker;
    
    $broker->logout();
    
    $this->guard()->logout();
    
    $request->session()->invalidate();
    
    return redirect('/');
}

That's all. For other Broker pages you should repeat everything from the beginning just changing your Broker name and secret in configuration file.

Example .env options:

SSO_SERVER_URL=https://server.test
SSO_BROKER_NAME=site1
SSO_BROKER_SECRET=892asjdajsdksja74jh38kljk2929023

Usage Options

User creating/fetching mapping

When mapping user creation use inside config/laravel-sso.php:

    // Logged in user fields sent to brokers.
    'userFields' => [
        // Return array field name => database column name
        'id' => 'id',
        'name' => 'name',
        'email' => 'email',
    ],

And if broker uses different names for user fields:

// probably in your service provider
\LaravelAuto\Sso\Middleware\SingleSignOnVerification::createOrFindUserUsing(function (array $data){
    return User::firstOrCreate([
        'name_on_broker' => $data['name_from_server']
    ]);
});

laravel-auto/sso 适用场景与选型建议

laravel-auto/sso 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 08 月 03 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「Authentication」 「login」 「SSO」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 laravel-auto/sso 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 laravel-auto/sso 我们能提供哪些服务?
定制开发 / 二次开发

基于 laravel-auto/sso 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 7
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 74
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-08-03