定制 michalzimka/feature-toggle 二次开发

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

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

michalzimka/feature-toggle

最新稳定版本:1.0.1

Composer 安装命令:

composer require michalzimka/feature-toggle

包简介

Feature Toggle Bundle for Symfony provides an easy way to manage feature flags in your Symfony applications.

README 文档

README

Feature Toggle Bundle for Symfony provides an easy way to manage feature flags in your Symfony applications.

Installation

   composer require michalzimka/feature-toggle

Configuration

You can create FeatureToggle entity with properties:

#[ORM\Column(length: 255, unique: true)]
private string $name;

#[ORM\Column(type: 'boolean')]
private bool $active;


Then create a repository implementing FeatureToggle\Repository\FeatureToggleRepositoryInterface and set this class in feature_toggle.yaml.

For example:

<?php

namespace App\Repository;

use Doctrine\ORM\EntityManagerInterface;
use FeatureToggle\FeatureToggle;
use FeatureToggle\Repository\FeatureToggleRepositoryInterface;
use App\Entity\FeatureToggle as FeatureToggleEntity;

class DatabaseFeatureToggleRepository implements FeatureToggleRepositoryInterface
{
    public function __construct(
        private EntityManagerInterface $entityManager,
    ) {}

    public function findByName(string $name): ?FeatureToggle
    {
        $entity = $this->entityManager
            ->getRepository(FeatureToggleEntity::class)
            ->findOneBy(['name' => $name]);

        if (!$entity) {
            return null;
        }

        return new FeatureToggle()
            ->setName($entity->getName())
            ->setActive($entity->isActive());
    }

    public function findAll(): array
    {
        $entities = $this->entityManager->getRepository(FeatureToggleEntity::class)->findAll();
        $toggles = [];

        foreach ($entities as $entity) {
            $toggles[] = new FeatureToggle()
                ->setName($entity->getName())
                ->setActive($entity->isActive());
        }

        return $toggles;
    }
}

Usage

use FeatureToggle\FeatureManager;

$featureManager = new FeatureManager($yourRepository);

if ($featureManager->isActive('new_awesome_feature')) {
    // Awesome feature is active
}

Command: toggle:list

The php bin/console toggle:list command allows you to manage and view the list of feature toggles in your application.

Syntax

   php bin/console toggle:list [--active=<value>]

Options

  • --active=<value> (optional): Filters the results based on the status of feature toggles. Possible values:
    • true - Returns only active feature toggles.
    • false - Returns only inactive feature toggles.
    • If the option is not provided, the full list of feature toggles is displayed.

Usage

  1. Display the full list of feature toggles:

    php bin/console toggle:list
  2. Display only active feature toggles:

    php bin/console toggle:list --active=true
  3. Display only inactive feature toggles:

    php bin/console toggle:list --active=false

Sample Output

+-------------------+-----------+
| Feature Toggle    | Active    |
+-------------------+-----------+
| feature_toggle_1  | ACTIVE    |
| feature_toggle_2  | INSCTIVE  |
| feature_toggle_3  | ACTIVE    |
+-------------------+-----------+

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-01-15