PHP code example of turbine-kreuzberg / spryker-configcat

1. Go to this page and download the library: Download turbine-kreuzberg/spryker-configcat library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

turbine-kreuzberg / spryker-configcat example snippets


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

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

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

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