Download the PHP package onix-systems-php/hyperf-feature-flags without Composer

On this page you can find all versions of the php package onix-systems-php/hyperf-feature-flags. 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 hyperf-feature-flags

Hyperf-feature-flags component

Includes the following general usage classes:

Installation:

Publishing the config:

Defining feature flags in config:

Format: 'name' => 'rule'

config/autoload/feature-flags.php

Attention! If you want to use dates, in your rules you must take your dates in singular quotes. Otherwise, the rule will always evaluate as true.

Basic Usage:

Examples:

  1. Via: OnixSystemsPHP\HyperfFeatureFlags\Annotations\FeatureFlag.

As we can see from this code, that sendSlackNotification method will be executed if we slack-integrations is true in our config, in our feature_flags table or redis. the second parameter in FeatureFlag aspect was set to false then it indicates that if slack-integartion is not exists anywhere by default aspect will return false and this method will also return false.

  1. Via: OnixSystemsPHP\HyperfFeatureFlags\Services\GetFeatureFlagService

This example introduces how you can use it from your controller method which should return Psr\Http\Message\ResponseInterface. Here we don't use annotation because we need to return not a primitive but an object. So if $this->getFeatureFlagService->run('slack-integration') will return false, we just return $this->response->json([]). Otherwise, we go next.

For example, we have in our config these rules:

What will be the value of this rule?

  1. The first part, will evaluate [date:now] > '2050-31-12'. Obviously, until 2050-31-12 it will be false.
  2. The second part, will evaluate [config:slack.integration]. It will take integration value from the config/autoload/slack.php file if you have. Assume, we don't have slack-integration in our config file. So it will be null.
  3. The third part, will evaluate [feature:my-awesome-feature]. Nothing fancy, it will take from our file /cofnig/autoload/feature_flags.php, true value.
  4. Finally, evaluation of this rule my-custom-feature will be false || null || true. As the result of evaluation will be true.

Classes:

OnixSystemsPHP\HyperfFeatureFlags\Services\SetFeatureFlagService

This class allows you to set your feature flag to feature_flags table. The method run() accepts one argument: UpdateFeatureFlagDTO with name and rule of the feature flag. It checks if the given user can set this feature flag. So you should implement policy logic.

OnixSystemsPHP\HyperfFeatureFlags\Services\ResetFeatureFlagService

This class allows you to reset your feature. In simply words it just deletes your flag from the database and redis. The method run() accepts one argument: ResetFeatureFlagDTO with name and rule of the feature flag. It checks if the given user can reset this feature flag. So you should implement policy logic.

OnixSystemsPHP\HyperfFeatureFlags\Services\GetCurrentFeatureFlagService

This class allows you to get all current feature flags. The method run() returns an associative array with name and value (which evaluates based on rule) of the feature flag.

OnixSystemsPHP\HyperfFeatureFlags\Services\GetOverriddenFeatureFlagsService

This class allows you to get all overridden features. In simply words it just grab your flags from the database and redis. The method run() returns an associative array with name and value of the feature flag.

OnixSystemsPHP\HyperfFeatureFlags\Services\GetFeatureFlagService

This class allows you to get value of your rule. Firstly, it goes to redis and checks if it presents in it, then if yes takes it. Secondly if no, goes to database if there is any flag with this name if yes, takes it. Finally, goes to the config and return evaluated rule from the config even if there is such rule in config, it simply returns false, in any of these cases it stores value to redis.

License

The MIT License (MIT). Please see License File for more information.


All versions of hyperf-feature-flags with dependencies

PHP Build Version
Package Version
Requires ext-redis Version *
hyperf/di Version ^3.1
hyperf/framework Version ^3.1
hyperf/redis Version ^3.1
nesbot/carbon Version ^2.72
onix-systems-php/hyperf-actions-log Version ^1.2
onix-systems-php/hyperf-core Version ^1.2.0
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 onix-systems-php/hyperf-feature-flags contains the following files

Loading the files please wait ....