flametrench/laravel
Composer 安装命令:
composer require flametrench/laravel
包简介
Laravel adapter for Flametrench: ServiceProvider + facades + middleware bridging the flametrench/{ids,identity,tenancy,authz} PHP SDKs into Laravel applications.
README 文档
README
Laravel adapter for Flametrench — wires the four PHP SDK packages (flametrench/{ids,identity,tenancy,authz}) into Laravel's service container.
Status
Pre-release scaffold. Targets Laravel 11+ on PHP 8.3+. Spec tracking v0.2.0.
Install
composer require flametrench/laravel:^0.2.0
The package auto-registers Flametrench\Laravel\FlametrenchServiceProvider and the Flametrench facade alias via Laravel's package discovery.
Configuration
Publish the config file:
php artisan vendor:publish --tag=flametrench-config
This drops config/flametrench.php into your app, where you select drivers per capability:
return [ 'identity' => ['driver' => env('FLAMETRENCH_IDENTITY_DRIVER', 'in-memory')], 'tenancy' => ['driver' => env('FLAMETRENCH_TENANCY_DRIVER', 'in-memory')], 'authz' => ['driver' => env('FLAMETRENCH_AUTHZ_DRIVER', 'in-memory')], ];
The default in-memory driver wires the reference implementations from the per-capability SDKs — fine for tests and local development.
Production binding
This package does not ship Postgres-backed stores; those live in the per-capability SDKs as they land. For production, override the bindings in your own AppServiceProvider::register():
use Flametrench\Identity\IdentityStore; use App\Identity\PostgresIdentityStore; public function register(): void { $this->app->singleton(IdentityStore::class, function ($app) { return new PostgresIdentityStore($app->make(\PDO::class)); }); }
AppServiceProvider runs before package providers, so your binding wins.
Usage
Type-hint the Flametrench store interfaces in controller / job constructors:
use Flametrench\Tenancy\TenancyStore; class OrgController { public function __construct(private readonly TenancyStore $tenancy) {} public function store(Request $request): JsonResponse { $result = $this->tenancy->createOrg( $request->user()->id, name: $request->input('name'), slug: $request->input('slug'), ); return response()->json($result['org']); } }
Or use the Flametrench facade for one-liners:
use Flametrench\Laravel\Facades\Flametrench; $user = Flametrench::identity()->getUser($usrId);
Testing
composer install
composer test
composer test:coverage
The test suite uses Orchestra Testbench to boot a Laravel application around the package, so the service provider binds against a real container.
License
Apache License 2.0. Copyright 2026 NDC Digital, LLC.
flametrench/laravel 适用场景与选型建议
flametrench/laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 11 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 05 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「authorization」 「identity」 「laravel」 「tenancy」 「multi-tenancy」 「flametrench」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 flametrench/laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 flametrench/laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 flametrench/laravel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Ory-Hydra OAuth 2.0 Client Provider for The PHP League OAuth2-Client
A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.
Laravel JWT auth service package
Identity authorizator class for Nette Framework
Identity ACL extension for Nette Framework
Zoho OAuth 2.0 Client Provider for The PHP League OAuth2-Client
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 51
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2026-05-01