bonch.dev/laravel-unleash
Composer 安装命令:
composer require bonch.dev/laravel-unleash
包简介
An Unleash client for Laravel
README 文档
README
An Unleash client for Laravel.
Installation
composer require mikefrancis/laravel-unleash
Export package config:
php artisan vendor:publish --provider="MikeFrancis\LaravelUnleash\ServiceProvider"
Configuration
Documentation for configuration can be found in config/unleash.php.
Usage
use \MikeFrancis\LaravelUnleash\Unleash;
$unleash = app(Unleash::class);
if ($unleash->isFeatureEnabled('myAwesomeFeature')) {
// Congratulations, you can see this awesome feature!
}
if ($unleash->isFeatureDisabled('myAwesomeFeature')) {
// Check back later for more features!
}
$feature = $unleash->getFeature('myAwesomeFeature');
$allFeatures = $unleash->getFeatures();
Facades
You can use the Unleash facade:
use Unleash;
if (Unleash::isFeatureEnabled('myAwesomeFeature')) {
// Congratulations, you can see this awesome feature!
}
if (Unleash::isFeatureDisabled('myAwesomeFeature')) {
// Check back later for more features!
}
$feature = Unleash::getFeature('myAwesomeFeature');
$allFeatures = Unleash::getFeatures();
or use the generically named Feature facade:
use Feature;
if (Feature::enabled('myAwesomeFeature')) {
// Congratulations, you can see this awesome feature!
}
if (Feature::disabled('myAwesomeFeature')) {
// Check back later for more features!
}
$feature = Feature::get('myAwesomeFeature');
$allFeatures = Feature::all();
Dynamic Arguments
If your strategy relies on dynamic data at runtime, you can pass additional arguments to the feature check functions:
use \MikeFrancis\LaravelUnleash\Unleash;
use Config;
$unleash = app(Unleash::class);
$allowList = config('app.allow_list');
if ($unleash->isFeatureEnabled('myAwesomeFeature', $allowList)) {
// Congratulations, you can see this awesome feature!
}
if ($unleash->isFeatureDisabled('myAwesomeFeature', $allowList)) {
// Check back later for more features!
}
Blade
Blade directive for checking if a feature is enabled:
@featureEnabled('myAwesomeFeature')
Congratulations, you can see this awesome feature!
@endfeatureEnabled
Or if a feature is disabled:
@featureDisabled('myAwesomeFeature')
Check back later for more features!
@endfeatureDisabled
You cannot currently use dynamic strategy arguments with Blade template directives.
Middleware
This package includes middleware that will deny routes depending on whether a feature is enabled or not.
To use the middle, add the following to your app/Http/Kernel.php:
protected $routeMiddleware = [
// other middleware
'feature.enabled' => \MikeFrancis\LaravelUnleash\Middleware\FeatureEnabled::class,
'feature.disabled' => \MikeFrancis\LaravelUnleash\Middleware\FeatureDisabled::class,
];
You can then use the middleware in your routes:
Route::get('/new-feature-path', function () {
//
})->middleware('feature.enabled:myAwesomeFeature');
Route::get('/terrible-legacy-path', function () {
//
})->middleware('feature.disabled:myAwesomeFeature');
or in your controllers like so:
class ExampleController extends Controller
{
public function __construct()
{
$this->middleware('feature.enabled:myAwesomeFeature');
// or
$this->middleware('feature.disabled:myAwesomeFeature');
}
}
You cannot currently use dynamic strategy arguments with Middleware.
bonch.dev/laravel-unleash 适用场景与选型建议
bonch.dev/laravel-unleash 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17.1k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 02 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 bonch.dev/laravel-unleash 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 bonch.dev/laravel-unleash 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 17.1k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-02-15