wizaplace/front-bundle

安装次数: 36,549

依赖项: 0

建议者: 0

安全: 0

星级: 2

关注者: 18

分支: 1

公开问题: 9

类型:symfony-bundle


README

这是一个Symfony包,为您提供构建自定义Wizaplace前端的工具。

此仓库包含底层工具。如果您想构建Wizaplace前端,可能更感兴趣的是使用我们的完整入门套件。请联系我们

安装

$ composer require wizaplace/front-bundle

您需要更新您的 app/AppKernel.php 文件

<?php
// app/AppKernel.php

use Symfony\Component\HttpKernel\Kernel;

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new WizaplaceFrontBundle\WizaplaceFrontBundle(),
        ];
    }
}

您还需要导入路由

# app/config/routing.yml

wizaplace_front_bundle:
    resource: '@WizaplaceFrontBundle/Resources/config/routing.yml'