victoire/html-widget

此包已被废弃,不再维护。未建议替代包。

Victoire HTML小部件

安装次数: 4,278

依赖项: 1

建议者: 0

安全: 0

星级: 2

关注者: 15

分支: 4

公开问题: 0

类型:symfony-bundle

2.0.2 2017-05-24 15:21 UTC

This package is auto-updated.

Last update: 2021-12-21 22:51:57 UTC


README

CircleCI

Victoire Html Bundle

此包的用途是什么

此包提供对HTML小部件的访问,通过它您可以在您的网站上集成HTML插槽。

设置Victoire

如果您尚未设置,可以按照以下步骤设置Victoire 这里

安装包

php composer.phar require victoire/html-widget

提醒

不要忘记在您的AppKernel中添加此包!

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            ...
            new Victoire\Widget\HtmlBundle\VictoireWidgetHtmlBundle(),
        );

        return $bundles;
    }
}