Automatic cache busting using Git commit in Symfony2
<?php | |
// app/config/assets_version.php | |
$container->loadFromExtension('framework', array( | |
'templating' => array( | |
'engines' => array('twig'), | |
'assets_version' => exec('git rev-parse --short HEAD'), | |
), | |
)); |
# app/config/config.yml | |
imports: | |
- { resource: parameters.yml } | |
#... | |
- { resource: assets_version.php } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Why don't just set parameter and use it later in config file? It's much simpler and transparent.