NeniPhptalBundle 是 Symfony2 中的渲染器 TAL 和 PHPTAL。安装步骤如下:
- 通过 composer 安装:
$ composer require neni/phptal-bundle
由于没有标签,可能需要使用“@dev”版本。neni/phptal-bundle 对 phptal 有一个“@dev”依赖,这可能与项目的最低稳定性设置冲突。如果遇到这种情况,可以通过以下命令手动解决:
$ composer require phptal/phptal --dev
- 添加 bundle 到应用内核。在
app/AppKernel.php
文件中添加以下内容:
public function registerBundles() {
return array(
// ...
new NeniPhptalBundle(),
);
}
暂无评论