├── .gitignore ├── DependencyInjection ├── Configuration.php ├── OpenSkyRuntimeConfigExtension.php └── RuntimeParameterBagAwareInterface.php ├── Entity ├── Parameter.php └── ParameterRepository.php ├── LICENSE ├── Model ├── Parameter.php └── ParameterProviderInterface.php ├── OpenSkyRuntimeConfigBundle.php ├── README.md ├── Resources └── config │ └── services.xml ├── Service ├── RuntimeParameterBag.php └── RuntimeParameterBagLogger.php ├── Tests ├── DependencyInjection │ └── OpenSkyRuntimeConfigExtensionTest.php ├── Entity │ └── ParameterRepositoryTest.php ├── Model │ └── ParameterTest.php ├── Service │ ├── RuntimeParameterBagLoggerTest.php │ └── RuntimeParameterBagTest.php └── bootstrap.php ├── Twig └── Extension │ └── RuntimeConfigExtension.php ├── Util └── LogUtil.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/OpenSkyRuntimeConfigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/DependencyInjection/OpenSkyRuntimeConfigExtension.php -------------------------------------------------------------------------------- /DependencyInjection/RuntimeParameterBagAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/DependencyInjection/RuntimeParameterBagAwareInterface.php -------------------------------------------------------------------------------- /Entity/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Entity/Parameter.php -------------------------------------------------------------------------------- /Entity/ParameterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Entity/ParameterRepository.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Model/Parameter.php -------------------------------------------------------------------------------- /Model/ParameterProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Model/ParameterProviderInterface.php -------------------------------------------------------------------------------- /OpenSkyRuntimeConfigBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/OpenSkyRuntimeConfigBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Service/RuntimeParameterBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Service/RuntimeParameterBag.php -------------------------------------------------------------------------------- /Service/RuntimeParameterBagLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Service/RuntimeParameterBagLogger.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/OpenSkyRuntimeConfigExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Tests/DependencyInjection/OpenSkyRuntimeConfigExtensionTest.php -------------------------------------------------------------------------------- /Tests/Entity/ParameterRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Tests/Entity/ParameterRepositoryTest.php -------------------------------------------------------------------------------- /Tests/Model/ParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Tests/Model/ParameterTest.php -------------------------------------------------------------------------------- /Tests/Service/RuntimeParameterBagLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Tests/Service/RuntimeParameterBagLoggerTest.php -------------------------------------------------------------------------------- /Tests/Service/RuntimeParameterBagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Tests/Service/RuntimeParameterBagTest.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /Twig/Extension/RuntimeConfigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Twig/Extension/RuntimeConfigExtension.php -------------------------------------------------------------------------------- /Util/LogUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/Util/LogUtil.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensky/OpenSkyRuntimeConfigBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------