Download the PHP package twentytwo-labs/feature-flag-bundle without Composer
On this page you can find all versions of the php package twentytwo-labs/feature-flag-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download twentytwo-labs/feature-flag-bundle
More information about twentytwo-labs/feature-flag-bundle
Files in twentytwo-labs/feature-flag-bundle
Package feature-flag-bundle
Short Description Bundle to manage features flag
License MIT
Informations about the package feature-flag-bundle
FeatureFlagBundle
The FeatureFlagBundle is a bundle to manage features flags in your Symfony applications.
Compatibility
This bundle is tested with at least all maintained Symfony version.
Documentation
Install it
Install extension using composer:
If you don't use Flex, enable the bundle in your config/bundles.php
file:
Configuration
To configure and register a feature manager you need a factory service. You may also need to change some options to the factory.
The factories that come with this bundle can be found in the table below.
Factory service id | How to Install |
---|---|
twenty-two-labs.feature-flags.factory.orm | composer require twentytwo-labs/orm-feature-flag |
twenty-two-labs.feature-flags.factory.api-service | composer require twentytwo-labs/api-service-feature-flag |
Example configuration
You can declare multiple managers. Multiple providers is useful if you want to use different storage providers or to isolate your features flags.
When several managers are defined, they are registered in the Symfony dependency injection container as services with the following naming convention: twentytwo_labs_feature_flag.manager.<manager_name>
.
For example, the manager_bar
is accessible with the following service name: twentytwo_labs_feature_flag.manager.manager_bar
.
Manager storage are also registered in the Symfony dependency injection container as services with the following naming convention: twentytwo_labs_feature_flag.storage.<manager_name>
.
Cache
You can cache, PSR6 compatible, all feature flags
Use it
As a service
The bundle adds a global ChainedFeatureManager
service you can use in your PHP classes.
In your Twig templates
You can also check a flag in your templates:
In the routing configuration
The package allows you to restrict a controller access by adding some configuration in your routing definition.
As a controller attribute
You can also restrict a controller access with attributes :
Implement your own storage provider
- First your need to create your storage provider class which implement the
TwentytwoLabs\FeatureFlagBundle\Storage\StorageInterface
interface - After your need to create a factory class which implement the
TwentytwoLabs\FeatureFlagBundle\Factory\StorageFactoryInterface
interface and create your custom storage - Register it in the Symfony dependency injection container
- Specify the storage you want to use in a manager configuration
License
This library is published under MIT license
All versions of feature-flag-bundle with dependencies
ext-json Version *
symfony/expression-language Version ^5.4|^6.0|^7.0
symfony/framework-bundle Version ^5.4|^6.0|^7.0
symfony/options-resolver Version ^5.4|^6.0|^7.0