friendsofvictoire / markdown-widget
此包已 废弃 并不再维护。未建议替代包。
Victoire DCMS Markdown 小部件
2.1.0
2017-05-24 15:29 UTC
Requires
- victoire/html-widget: >=2.0.0
- victoire/victoire: >=2.0.0|~3.0
This package is not auto-updated.
Last update: 2021-12-21 22:41:46 UTC
README
##此包的用途是什么
此包为您提供访问 Markdown 小部件 的权限。
##设置 Victoire
如果您还没有设置 Victoire,可以按照以下步骤进行 这里
##安装菜单包
运行以下 composer 命令
php composer.phar require friendsofvictoire/markdown-widget
###提醒
不要忘记在您的 AppKernel 中添加该包!
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\MarkdownBundle\VictoireWidgetMarkdownBundle(),
);
return $bundles;
}
}