video-games-records / dwh-bundle
VideoGamesRecords DwhBundle
Installs: 317
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.3
- api-platform/doctrine-orm: ^4.0
- api-platform/symfony: ^4.0
- 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-12-08 13:59:34 UTC
README
Develop
Installation
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require video-games-records/dwh-bundle "~1"
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new VideoGamesRecords\DwhBundle\VideoGamesRecordsDwhBundle(), ); // ... } // ... }