video-games-records / core-bundle
VideoGamesRecords CoreBundle
Installs: 1 139
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 5
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.1
- ext-gd: *
- a2lix/translation-form-bundle: *
- api-platform/core: ^3.2
- aws/aws-sdk-php-symfony: ~2.0
- beberlei/doctrineextensions: ^1.3
- doctrine/doctrine-bundle: ~2.0
- doctrine/orm: ^2.5
- dragonmantank/cron-expression: ^3.3
- friendsofsymfony/ckeditor-bundle: ^2.1
- gedmo/doctrine-extensions: ^3.11
- google/apiclient: ^2.0
- knplabs/doctrine-behaviors: ~2.0
- league/flysystem-bundle: ^3.0
- sonata-project/admin-bundle: ^4.0
- sonata-project/doctrine-orm-admin-bundle: ^4.8
- symfony/config: ^6.4
- symfony/console: ^6.4
- symfony/dependency-injection: ^6.4
- symfony/dotenv: ^6.4
- symfony/flex: ^2
- symfony/framework-bundle: ^6.4
- symfony/http-kernel: ^6.4
- symfony/intl: ^6.4
- symfony/lock: ^6.4
- symfony/messenger: ^6.4
- symfony/runtime: ^6.4
- symfony/scheduler: ^6.4
- symfony/twig-bundle: ^6.4
- symfony/validator: ^6.4
- symfony/yaml: ^6.4
- webmozart/assert: *
- yokai/sonata-workflow: ^0.7.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-09 16:15:33 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/core-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\CoreBundle\VideoGamesRecordsCoreBundle(), ); // ... } // ... }
Step 3: Configuration
Database
In order to link your User entity to this module you should add the following configuration: (Replace ProjetNormandie\UserBundle\Entity\User with your user class).
Routing
video_games_records_core: resource: "@VideoGamesRecordsCoreBundle/Controller/" type: annotation