Download the PHP package stogon/unleash-bundle without Composer
On this page you can find all versions of the php package stogon/unleash-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download stogon/unleash-bundle
More information about stogon/unleash-bundle
Files in stogon/unleash-bundle
Package unleash-bundle
Short Description Unleash SDK implementation for Symfony framework
License MIT
Informations about the package unleash-bundle
Unleash Bundle
An Unleash bundle for Symfony 5.4+, 6.4+ and 7.0+ applications.
This provide an easy way to implement feature flags using Gitlab Feature Flags Feature.
This implementation conforms to the official Unleash standards.
Inspired by minds/unleash-client-php and mikefrancis/laravel-unleash.
Installation
Configurations
Full configurations example:
Usage
To use the client, simply inject Stogon\UnleashBundle\UnleashInterface
into your service and use it like this:
Twig
The bundle also provide Twig functions to check if a feature is enabled/disabled for the current user:
Console
There are console commands that comes with this bundle :
Command name | Description |
---|---|
unleash:features:fetch |
Fetch Unleash features from remote and store them in the cache for later usage. |
unleash:features:list |
List available Unleash features from remote. |
Strategies
Available strategies:
Strategy name | Description |
---|---|
default |
It is the simplest activation strategy and basically means "active for everyone". |
userWithId |
This strategy allows you to specify a list of user IDs that you want to expose the new feature for. (A user id may, of course, be an email if that is more appropriate in your system.) |
flexibleRollout |
A flexible rollout strategy which combines all gradual rollout strategies in to a single strategy (and will in time replace them) |
gradualRolloutUserId |
The gradualRolloutUserId strategy gradually activates a feature toggle for logged-in users. Stickiness is based on the user ID. The strategy guarantees that the same user gets the same experience every time across devices |
gradualRolloutSessionId |
Similar to gradualRolloutUserId strategy, this strategy gradually activates a feature toggle, with the exception being that the stickiness is based on the session IDs. This makes it possible to target all users (not just logged-in users), guaranteeing that a user will get the same experience within a session. |
gradualRolloutRandom |
The gradualRolloutRandom strategy randomly activates a feature toggle and has no stickiness. We have found this rollout strategy very useful in some scenarios, especially when we enable a feature which is not visible to the user. It is also the strategy we use to sample metrics and error reports. |
For more informations, see https://docs.getunleash.io/docs/activation_strategy
Add a custom strategy
If the existing strategies does not fill your needs, you can implement a custom strategy with your own logic.
First, you need to create a class which implements the Stogon\UnleashBundle\Strategy\StrategyInterface
Then you need to tag your custom strategy with the unleash.strategy
tag and provide a activation_name
for it.
The
activation_name
must match thestrategy.name
value of your Unleash strategy ! see https://docs.getunleash.io/docs/activation_strategy
Override an existing strategy
You can override an existing strategy simply by setting the activation_name
of the tag
to the same strategy name used here.
Example:
Add additional context to strategies
If you want to add additional data to the context passed to resolved strategy ($context
parameter of the Stogon\UnleashBundle\Strategy\StrategyInterface::isEnabled
method), you can implement an event listener/subscriber to react to the Stogon\UnleashBundle\Event\UnleashContextEvent
event.
Example:
Testing
Simply run :
or
Contributing
See CONTRIBUTING.md.
All versions of unleash-bundle with dependencies
lastguest/murmurhash Version ^2.1
symfony/cache-contracts Version ^2.4|^3.0
symfony/config Version ^5.4|^6.4|^7.0
symfony/console Version ^5.4|^6.4|^7.0
symfony/dependency-injection Version ^5.4|^6.4|^7.0
symfony/event-dispatcher-contracts Version ^2.4|^3.0
symfony/http-client-contracts Version ^2.4|^3.0
symfony/http-kernel Version ^5.4.20|^6.4|^7.0
symfony/security-core Version ^5.4|^6.4|^7.0
twig/twig Version ^2.12|>=3.11.2