ez-php/feature-flags
Composer 安装命令:
composer require ez-php/feature-flags
包简介
Simple feature flag evaluation for the ez-php framework — File, Database, and Array drivers with a static Flag facade
README 文档
README
Simple feature flag evaluation for the ez-php framework. No external service required — flags are stored in a PHP file, a database table, or a plain array.
Installation
composer require ez-php/feature-flags
Register the provider in provider/modules.php:
\EzPhp\FeatureFlags\FeatureFlagServiceProvider::class,
Usage
use EzPhp\FeatureFlags\Flag; if (Flag::enabled('new-checkout')) { // show new checkout flow } if (Flag::disabled('dark-mode')) { // show light theme } // Context-aware evaluation (e.g. per-user gradual rollouts) if (Flag::enabledFor('beta-search', $user->id)) { // show beta search to this user } if (Flag::disabledFor('new-ui', $user->id)) { // show legacy UI for this user } $all = Flag::all(); // ['new-checkout' => true, 'dark-mode' => false]
Configuration
Add a config/flags.php to your application:
return [ 'flags' => [ 'driver' => env('FLAGS_DRIVER', 'file'), // file | database | array 'file' => base_path('config/flags.php'), ], ];
Drivers
| Driver | Config key value | Description |
|---|---|---|
file |
file |
Reads a PHP file returning array<string, bool> |
database |
database |
Reads a feature_flags table via PDO |
array |
array |
Empty in-memory driver (CI / test environments) |
File driver
Create config/flags.php in your application:
<?php return [ 'new-checkout' => true, 'dark-mode' => false, 'beta-search' => false, ];
Database driver
Create the feature_flags table (example migration):
$pdo->exec(' CREATE TABLE feature_flags ( name VARCHAR(255) NOT NULL PRIMARY KEY, enabled TINYINT(1) NOT NULL DEFAULT 0 ) ');
For per-context overrides (e.g. per-user beta rollouts), also create feature_flag_contexts:
$pdo->exec(' CREATE TABLE feature_flag_contexts ( name VARCHAR(255) NOT NULL, context_id VARCHAR(255) NOT NULL, enabled TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (name, context_id) ) ');
When enabledFor('flag', $userId) is called, the driver checks feature_flag_contexts first; if no matching row exists, it falls back to the global feature_flags value. A missing feature_flag_contexts table is silently treated as "no overrides" — no migration is required for basic use.
Insert flags directly via SQL or through your own admin interface:
INSERT INTO feature_flags (name, enabled) VALUES ('new-checkout', 1); INSERT INTO feature_flag_contexts (name, context_id, enabled) VALUES ('beta-search', '42', 1);
Behaviour
- Unknown flags default to
false—Flag::enabled('unknown')never throws. - Drivers never throw — all query/file failures are caught internally and result in
false. - The
Flagfacade throwsRuntimeExceptionwhen called beforeFeatureFlagServiceProviderhas been booted — this is a programmer error, not a runtime failure.
Testing
docker compose exec app composer test
All tests run without external infrastructure (SQLite :memory: for the database driver, temp files for the file driver).
License
MIT
ez-php/feature-flags 适用场景与选型建议
ez-php/feature-flags 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「php」 「flags」 「rollout」 「feature-flags」 「feature-toggles」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 ez-php/feature-flags 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ez-php/feature-flags 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 ez-php/feature-flags 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
ZF2 module for the Opensoft Rollout library
A PHP trait to enable bitwise comparison of flags
Adds flags support to your model/entity
County and languages flags css
Alfabank REST API integration
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 30
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-28