-
16.08.11 - Add third party libraries to Symfony 2
Adding libraries that follows the PHP 5.3.+ with namespaces is trivial, but how we can add an old PHP library without namespaces?For example, if we want to add a library like which haves an old style format (lower than 5.3.+), not follows the standards and it not have namespaces, we have to do a [...]
-
15.08.11 - Extending Twig in Symfony 2, add custom functions
Sometimes we need to add some custom functions to the view. In Symfony 1 we have the helpers, in Symfony 2 we must extend Twig in order to add it.At first, we have to connect our future Twig extension to the Dependency Injection Container in our Bundle. If we don't got any config file we have to [...]