承接 getphred/flagpole 相关项目开发

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

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

getphred/flagpole

最新稳定版本:v0.2.0

Composer 安装命令:

composer require getphred/flagpole

包简介

Feature flag handling library for PHP. Simple, fast, and framework-agnostic.

README 文档

README

Feature flag handling for PHP. Simple, framework-agnostic, and lightweight.

CI Packagist

Installation

Install via Composer:

composer require phred/flagpole

Quick start

use FlagPole\FeatureManager;
use FlagPole\Context;
use FlagPole\Repository\InMemoryFlagRepository;

require __DIR__ . '/vendor/autoload.php';

$repo = InMemoryFlagRepository::fromArray([
    'new-dashboard' => [
        'enabled' => null,               // not a hard on/off
        'rolloutPercentage' => 25,       // 25% gradual rollout
        'allowList' => ['user_1'],       // always on for specific users
    ],
    'hard-off' => [ 'enabled' => false ],
    'hard-on'  => [ 'enabled' => true ],
]);

$flags = new FeatureManager($repo);

$context = Context::fromArray(['userId' => 'user_42']);

if ($flags->isEnabled('new-dashboard', $context, false)) {
    // show the new dashboard
} else {
    // keep the old dashboard
}

Concepts

  • Flag: has a name and optional strategies:
    • enabled: explicit boolean on/off overrides everything.
    • rolloutPercentage: 0-100 gradual rollout based on a stable hash of the flag name + user key.
    • allowList: list of user keys that always get the flag enabled.
  • Context: attributes about the subject (e.g. userId, email) used for evaluation.
  • Repository: source of truth for flags. Provided: InMemoryFlagRepository. You can implement your own.

Targeting key

Evaluator looks for a stable key in the context in this order: key, userId, id, email.

Rollout hashing and boundary behavior

  • Stable bucketing uses crc32(flagName:key) normalized to an unsigned 32-bit integer, then mapped to buckets 0..99.
  • This guarantees consistent behavior across 32-bit and 64-bit platforms.
  • Boundary rules:
    • 0% rollout always evaluates to false when a targeting key is present.
    • 100% rollout always evaluates to true when a targeting key is present.
    • If no targeting key is present in the Context, percentage rollout falls back to the default you pass to isEnabled().

Precedence semantics

When evaluating a flag, the following precedence applies:

  1. allowList — if the targeting key is in the allow-list, the flag is enabled.
  2. enabled — explicit on/off overrides percentage rollout and defaults.
  3. rolloutPercentage — uses stable bucketing over the targeting key.
  4. Fallback — returns the provided default when none of the above apply.

Framework integration

FlagPole is framework-agnostic. Wrap FeatureManager in your framework's container and bind a repository suitable for your environment.

License

MIT

统计信息

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

GitHub 信息

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

其他信息

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