├── LICENSE ├── README.md ├── composer.json ├── rector.80.php ├── rector.81.php └── src ├── Attribute ├── ControllerAttribute.php ├── IsEnabled.php └── IsNotEnabled.php ├── Command └── TestFlagCommand.php ├── Context ├── SymfonyContextProvider.php └── SymfonyUnleashContext.php ├── DependencyInjection ├── Compiler │ ├── BootstrapResolver.php │ ├── CacheServiceResolverCompilerPass.php │ └── HttpServicesResolverCompilerPass.php ├── Configuration.php ├── Dsn │ ├── LateBoundDsnParameter.php │ └── StaticStringableParameter.php ├── UnleashClientExtension.php └── UnleashSymfonyClientExtension.php ├── Event ├── BeforeExceptionThrownForAttributeEvent.php ├── ContextValueNotFoundEvent.php └── UnleashEvents.php ├── Listener └── ControllerAttributeResolver.php ├── Resources └── config │ ├── autowiring.yaml │ ├── services.yaml │ └── twig.yaml ├── Twig ├── FeatureTagNode.php ├── FeatureTagTokenParser.php ├── UnleashTwigExtension.php └── UnleashTwigRuntime.php ├── Unleash └── UnleashDecorator.php ├── UnleashClientBundle.php └── UnleashSymfonyClientBundle.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/composer.json -------------------------------------------------------------------------------- /rector.80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/rector.80.php -------------------------------------------------------------------------------- /rector.81.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/rector.81.php -------------------------------------------------------------------------------- /src/Attribute/ControllerAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Attribute/ControllerAttribute.php -------------------------------------------------------------------------------- /src/Attribute/IsEnabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Attribute/IsEnabled.php -------------------------------------------------------------------------------- /src/Attribute/IsNotEnabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Attribute/IsNotEnabled.php -------------------------------------------------------------------------------- /src/Command/TestFlagCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Command/TestFlagCommand.php -------------------------------------------------------------------------------- /src/Context/SymfonyContextProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Context/SymfonyContextProvider.php -------------------------------------------------------------------------------- /src/Context/SymfonyUnleashContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Context/SymfonyUnleashContext.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/BootstrapResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/Compiler/BootstrapResolver.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/CacheServiceResolverCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/Compiler/CacheServiceResolverCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Compiler/HttpServicesResolverCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/Compiler/HttpServicesResolverCompilerPass.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/Dsn/LateBoundDsnParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/Dsn/LateBoundDsnParameter.php -------------------------------------------------------------------------------- /src/DependencyInjection/Dsn/StaticStringableParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/Dsn/StaticStringableParameter.php -------------------------------------------------------------------------------- /src/DependencyInjection/UnleashClientExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/UnleashClientExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/UnleashSymfonyClientExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/DependencyInjection/UnleashSymfonyClientExtension.php -------------------------------------------------------------------------------- /src/Event/BeforeExceptionThrownForAttributeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Event/BeforeExceptionThrownForAttributeEvent.php -------------------------------------------------------------------------------- /src/Event/ContextValueNotFoundEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Event/ContextValueNotFoundEvent.php -------------------------------------------------------------------------------- /src/Event/UnleashEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Event/UnleashEvents.php -------------------------------------------------------------------------------- /src/Listener/ControllerAttributeResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Listener/ControllerAttributeResolver.php -------------------------------------------------------------------------------- /src/Resources/config/autowiring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Resources/config/autowiring.yaml -------------------------------------------------------------------------------- /src/Resources/config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Resources/config/services.yaml -------------------------------------------------------------------------------- /src/Resources/config/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Resources/config/twig.yaml -------------------------------------------------------------------------------- /src/Twig/FeatureTagNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Twig/FeatureTagNode.php -------------------------------------------------------------------------------- /src/Twig/FeatureTagTokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Twig/FeatureTagTokenParser.php -------------------------------------------------------------------------------- /src/Twig/UnleashTwigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Twig/UnleashTwigExtension.php -------------------------------------------------------------------------------- /src/Twig/UnleashTwigRuntime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Twig/UnleashTwigRuntime.php -------------------------------------------------------------------------------- /src/Unleash/UnleashDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/Unleash/UnleashDecorator.php -------------------------------------------------------------------------------- /src/UnleashClientBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/UnleashClientBundle.php -------------------------------------------------------------------------------- /src/UnleashSymfonyClientBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unleash/unleash-client-symfony/HEAD/src/UnleashSymfonyClientBundle.php --------------------------------------------------------------------------------