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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package unleash-bundle

Unleash Bundle

Packagist PHP from Packagist License codecov

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 the strategy.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

PHP Build Version
Package Version
Requires php Version ^7.4|^8.0
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package stogon/unleash-bundle contains the following files

Loading the files please wait ....