19/01
2013
Provides a simple Twig REPL
Provides a simple Twig REPL, (*1)
$ ./app/console twig:shell twig > 512*2 1024 twig > 512*2|number_format() 1024 twig > (512*2)|number_format() 1,024 twig >
$ composer require alb/twig-shell-bundle:*
Enable the bundle in the kernel:, (*2)
``` php <?php // app/AppKernel.php, (*3)
public function registerBundles() { $bundles = array( // ... new Alb\TwigShellBundle\AlbTwigShellBundle(), ); } ```, (*4)