craffft/barqrcodewizard-bundle

Contao 4 barqrcodewizard 套件

安装: 53

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

开放问题: 0

类型:symfony-bundle

1.1.0 2018-01-29 19:09 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:19:57 UTC


README

Barqrcodewizard 套件为 Contao 添加条形码和二维码向导。

安装步骤

步骤 1:下载套件

打开命令行控制台,进入您的项目目录,并执行以下命令以下载此套件的最新稳定版本

$ composer require craffft/barqrcodewizard-bundle "dev-master"

此命令需要您已全局安装 Composer,请参阅 Composer 文档的安装章节

步骤 2:启用套件

然后,将套件添加到项目中 app/AppKernel.php 文件中已注册的套件列表中,以启用该套件。

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new BG\BarcodeBundle\BarcodeBundle(),
            new Craffft\BarqrcodewizardBundle\CraffftBarqrcodewizardBundle(),
        );

        // ...
    }

    // ...
}