├── .editorconfig ├── .gitattributes ├── .gitignore ├── .php-cs-fixer.dist.php ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── composer.json ├── config └── services.php └── src ├── Cache └── FeatureCacheWarmer.php ├── Command ├── FetchFeaturesCommand.php └── ListFeaturesCommand.php ├── DependencyInjection ├── Configuration.php └── UnleashExtension.php ├── Event └── UnleashContextEvent.php ├── Feature.php ├── FeatureInterface.php ├── Helper └── ValueNormalizer.php ├── HttpClient └── UnleashHttpClient.php ├── Repository └── FeatureRepository.php ├── Strategy ├── DefaultStrategy.php ├── FlexibleRolloutStrategy.php ├── GradualRolloutRandomStrategy.php ├── GradualRolloutSessionIdStrategy.php ├── GradualRolloutUserIdStrategy.php ├── StrategyInterface.php └── UserWithIdStrategy.php ├── Twig └── UnleashExtension.php ├── Unleash.php ├── UnleashBundle.php └── UnleashInterface.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jsunier 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/config/services.php -------------------------------------------------------------------------------- /src/Cache/FeatureCacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Cache/FeatureCacheWarmer.php -------------------------------------------------------------------------------- /src/Command/FetchFeaturesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Command/FetchFeaturesCommand.php -------------------------------------------------------------------------------- /src/Command/ListFeaturesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Command/ListFeaturesCommand.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/UnleashExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/DependencyInjection/UnleashExtension.php -------------------------------------------------------------------------------- /src/Event/UnleashContextEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Event/UnleashContextEvent.php -------------------------------------------------------------------------------- /src/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Feature.php -------------------------------------------------------------------------------- /src/FeatureInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/FeatureInterface.php -------------------------------------------------------------------------------- /src/Helper/ValueNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Helper/ValueNormalizer.php -------------------------------------------------------------------------------- /src/HttpClient/UnleashHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/HttpClient/UnleashHttpClient.php -------------------------------------------------------------------------------- /src/Repository/FeatureRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Repository/FeatureRepository.php -------------------------------------------------------------------------------- /src/Strategy/DefaultStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Strategy/DefaultStrategy.php -------------------------------------------------------------------------------- /src/Strategy/FlexibleRolloutStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Strategy/FlexibleRolloutStrategy.php -------------------------------------------------------------------------------- /src/Strategy/GradualRolloutRandomStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Strategy/GradualRolloutRandomStrategy.php -------------------------------------------------------------------------------- /src/Strategy/GradualRolloutSessionIdStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Strategy/GradualRolloutSessionIdStrategy.php -------------------------------------------------------------------------------- /src/Strategy/GradualRolloutUserIdStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Strategy/GradualRolloutUserIdStrategy.php -------------------------------------------------------------------------------- /src/Strategy/StrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Strategy/StrategyInterface.php -------------------------------------------------------------------------------- /src/Strategy/UserWithIdStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Strategy/UserWithIdStrategy.php -------------------------------------------------------------------------------- /src/Twig/UnleashExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Twig/UnleashExtension.php -------------------------------------------------------------------------------- /src/Unleash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/Unleash.php -------------------------------------------------------------------------------- /src/UnleashBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/UnleashBundle.php -------------------------------------------------------------------------------- /src/UnleashInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stogon/unleash-bundle/HEAD/src/UnleashInterface.php --------------------------------------------------------------------------------