craffft / barqrcodewizard-bundle
Contao 4 barqrcodewizard 套件
1.1.0
2018-01-29 19:09 UTC
Requires
- php: >=7.1
- bitgrave/barcode-bundle: ~0.9
- contao/core-bundle: ~4.4
Requires (Dev)
- contao/manager-plugin: ^2.0
Conflicts
- contao/core: *
- contao/manager-plugin: <2.0 || >=3.0
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(), ); // ... } // ... }