alb / twig-shell-bundle
提供简单的 Twig REPL
0.1.0
2013-01-19 12:52 UTC
This package is auto-updated.
Last update: 2024-09-23 05:57:21 UTC
README
提供简单的 Twig REPL
示例
$ ./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:*
启用扩展包
在内核中启用扩展包
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Alb\TwigShellBundle\AlbTwigShellBundle(), ); }