/InfiniteCommonBundle

A collection of common code used in most of Infinite's projects

Primary LanguagePHP

Infinite Common Bundle

Please note that no support is provided for using this bundle.

Provides common functionality used in most Infinite Networks Symfony2 applications.

  • To use the twig variable site, AppKernel must be modified to add an additional parameter to the container:
    protected function getKernelParameters()
    {
        $parameters = parent::getKernelParameters();
        $parameters['site.version'] = trim(shell_exec('git describe --tags --always'));

        return $parameters;
    }