定制 willfd/auth0middlewarepackage 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

willfd/auth0middlewarepackage

最新稳定版本:1.0.2

Composer 安装命令:

composer require willfd/auth0middlewarepackage

包简介

Laravel Package for Using Auth0 Authentication in the middleware

README 文档

README

Simple package to allow for auth0 middleware authentication based on scopes and buyerIds

Package Implementation

Add Package to app

Add package to composer.json

Add package requirement

"require-dev": {
  "willfd/auth0middlewarepackage": "^1.0.0"
},

App Config

create config file for package

php artisan vendor:publish

set env variables

AUTH0_DOMAIN=          STRING                   ie https://domain-staging.uk.auth0.com
AUTH0_CLIENT_ID=       STRING                   ie ABcD1eFgHiJkL23Mn4opQ5rSTuVwXyzA
AUTH0_AUDIENCE=        STRING                   ie tmf-api
AUTH0_REQUIRED_SCOPES= STRING COMMA SEPERATED   ie write:app-example,read:app-example
AUTH0_ADMIN_SCOPES=    STRING COMMA SEPERATED   ie admin:app-example

Add Provider

In boostrap/providers.php, add the packages provider class

use willfd\auth0middlewarepackage\MiddlewarePackageServiceProvider;
...
return [
    MiddlewarePackageServiceProvider::class
];

Set Middleware Alias (optional)

In bootstrap/app.php add below. The alias can be called anything, the alias shall be used to reference the middleware within the routes

$middleware->alias([
    'package' => Auth0AuthenticateMiddleware::class,
]);

route setup

Add middleware to desired routes. "package" is the middlewares alias, "write:example-scope" is the required scope any routes within the middleware route.

Route::middleware('package:write:example-scope')

Details

If admin scopes are provided within the env. required scopes can be ignored if an admin scope is provided in the env with a matching name ie if the required scope is read:example-app then admin:example-app would bypass the required scope.

Local Dev

Docker

Spin up container using below (first time also include --build)

docker-compose up

tests

vendor/bin/phpunit tests/

统计信息

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

GitHub 信息

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

其他信息

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