OpenSkyRuntimeConfigBundle
OpenSkyRuntimeConfigBundle copied to clipboard
Provides a means for injecting configuration options into your Symfony2 application at runtime.
How would one, for example, dynamically override the `session.cookie_domain` parameter in FrameworkBundle based on the domain of the incoming request?
Hello! There is part from configuration ``` yaml services: runtime_parameters.security.firewalls.main.remember_me.domain: public: false class: stdClass factory_service: opensky.runtime_config factory_method: get arguments: - security.firewalls.main.remember_me.domain security: firewalls: main: pattern: .* remember_me: # ... domain:...