VideoGamesRecords DwhBundle

安装: 311

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 4

分支: 0

开放问题: 0

类型:symfony-bundle

dev-develop 2024-09-12 19:45 UTC

This package is auto-updated.

Last update: 2024-09-12 19:45:29 UTC


README

开发

Scrutinizer Code Quality Build Status

安装

步骤 1:下载包

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

$ composer require video-games-records/dwh-bundle "~1"

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

步骤 2:启用包

然后,通过将其添加到项目中 app/AppKernel.php 文件中注册的包列表中来启用该包。

<?php
// app/AppKernel.php

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

            new VideoGamesRecords\DwhBundle\VideoGamesRecordsDwhBundle(),
        );

        // ...
    }

    // ...
}