turbine-kreuzberg/spryker-configcat

ConfigCat wrapper for spryker

0.4.1 2023-01-27 12:05 UTC

This package is auto-updated.

Last update: 2024-04-27 14:49:06 UTC


README

tests

This package provides an integration for ConfigCat in Spryker.

Installation

  • Install the package via composer
composer require turbine-kreuzberg/spryker-configcat

Configuration

For an easy start, copy the following snippet to your config_local.php

$config[FeatureFlagConstants::SDK_KEY] = 'CONFIG-CAT-KEY';
$config[FeatureFlagConstants::CACHE_REFRESH_INTERVAL] = REFRESH_INTERVAL;

Usage

You can use it as a Client dependency in your bundles.

Example snippet:

$featureFlagClient = $this->getFactory()->getFeatureFlagClient();

if ($featureFlagClient->isFeatureOn('testFeature')) {
    echo('Feature is on!');
}

Tests

To have feature flag independent of configCat in tests you can set a default value in configFile

$config[FeatureFlagConstants::CONFIG_CAT_FEATURE_FLAGS] = [
    'feature_flag_in_config_file' => true,
    'feature flag 2' => false,
    'feature flag 3' => true,
];

Credits

License

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