purhur / feature-flags
This is a basic implementation of feature flags and their diffrent uses
dev-master
2019-06-11 07:53 UTC
Requires
- php: >=7
Requires (Dev)
- phpunit/phpunit: ^7.0 || ^6.4 || ^5.7 || ^4.8.35
This package is auto-updated.
Last update: 2025-03-11 21:24:34 UTC
README
Feature Flags
This component provides some FeatureFlags classes
Usage
To see the current working version you should probably look into the tests found here: FeatureFlagsTest
$featureFlags = new \FeatureFlags\FeatureFlags(
new \FeatureFlags\ArrayFlagConfiguration(array(
'test_feature' => true,
'test_indev_feature' => false,
))
);
if ($featureFlags->isActive('test_feature')) {
...
}