video-games-records / dwh-bundle
VideoGamesRecords DwhBundle
dev-develop
2024-09-12 19:45 UTC
Requires
- php: ^8.1
- api-platform/core: ^3.2
- doctrine/doctrine-bundle: ~2.0
- doctrine/orm: ^2.5
- symfony/config: ^6.4
- symfony/console: ^6.4
- symfony/dependency-injection: ^6.4
- symfony/http-kernel: ^6.4
- symfony/messenger: ^6.4
- symfony/scheduler: ^6.4
- video-games-records/core-bundle: dev-main
Requires (Dev)
- phpstan/extension-installer: ^1.3
- phpstan/phpstan: ^1.10
- phpstan/phpstan-doctrine: ^1.3
- phpstan/phpstan-symfony: ^1.3
- squizlabs/php_codesniffer: ^3.7
- symfony/browser-kit: ^6.4
- symfony/phpunit-bridge: ^7.0
- symfony/web-profiler-bundle: ^6.4
This package is auto-updated.
Last update: 2024-09-12 19:45:29 UTC
README
开发
安装
步骤 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(), ); // ... } // ... }