runroom / samples-bundle
Add a render event before rendering templates
Installs: 63 144
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 7
Forks: 6
Open Issues: 5
Type:symfony-bundle
pkg:composer/runroom/samples-bundle
Requires
- php: ^8.1
 - a2lix/translation-form-bundle: ^3.2
 - doctrine/dbal: ^3.6 || ^4.0
 - doctrine/doctrine-bundle: ^2.10
 - doctrine/orm: ^2.19 || ^3.2
 - egulias/email-validator: ^3.0 || ^4.0
 - friendsofsymfony/ckeditor-bundle: ^2.3
 - gedmo/doctrine-extensions: ^3.11
 - hubspot/hubspot-php: ^5.0
 - runroom-packages/doctrine-translatable-bundle: ^0.20
 - runroom-packages/form-handler-bundle: ^0.20
 - runroom-packages/render-event-bundle: ^0.20
 - runroom-packages/sortable-behavior-bundle: ^0.20
 - runroom-packages/translation-bundle: ^0.20
 - sonata-project/admin-bundle: ^4.20
 - sonata-project/doctrine-extensions: ^2.0
 - sonata-project/doctrine-orm-admin-bundle: ^4.3
 - sonata-project/media-bundle: ^4.5
 - symfony/config: ^6.4 || ^7.1
 - symfony/dependency-injection: ^6.4 || ^7.1
 - symfony/event-dispatcher: ^6.4 || ^7.1
 - symfony/event-dispatcher-contracts: ^2.1 || ^3.0
 - symfony/form: ^6.4 || ^7.1
 - symfony/framework-bundle: ^6.4 || ^7.1
 - symfony/http-foundation: ^6.4 || ^7.1
 - symfony/http-kernel: ^6.4 || ^7.1
 - symfony/options-resolver: ^6.4 || ^7.1
 - symfony/translation: ^6.4 || ^7.1
 - symfony/validator: ^6.4 || ^7.1
 - symfony/yaml: ^6.4 || ^7.1
 - twig/twig: ^3.0
 
Requires (Dev)
- a2lix/auto-form-bundle: ^0.4
 - dama/doctrine-test-bundle: ^8.2
 - ergebnis/composer-normalize: ^2.6
 - friendsofphp/php-cs-fixer: ^3.14
 - matthiasnoback/symfony-config-test: ^5.2
 - matthiasnoback/symfony-dependency-injection-test: ^5.1
 - phpstan/phpstan: ^1.10
 - phpstan/phpstan-doctrine: ^1.0
 - phpstan/phpstan-phpunit: ^1.0
 - phpstan/phpstan-strict-rules: ^1.0
 - phpstan/phpstan-symfony: ^1.0
 - phpunit/phpunit: ^9.6
 - psalm/plugin-phpunit: ^0.19
 - psalm/plugin-symfony: ^5.0
 - rector/rector: ^1.0
 - runroom-packages/testing: ^0.20
 - symfony/phpunit-bridge: ^7.1
 - vimeo/psalm: ^5.1
 - weirdan/doctrine-psalm-plugin: ^2.6
 - zenstruck/foundry: ^1.38.2 || ^2.0
 
This package is auto-updated.
Last update: 2025-10-05 19:16:38 UTC
README
This bundle is a collection of samples that we often need to implement in our projects. Currently this project is not usable outside the ArchetypeSymfony
Installation
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
composer require runroom/samples-bundle
Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles in config/bundles.php file of your project:
// config/bundles.php return [ // ... Runroom\SamplesBundle\RunroomSamplesBundle::class => ['all' => true], ];
Update doctrine schema
Finally, execute doctrine schema update to create the new tables:
console doctrine:schema:update --force
License
This bundle is under the MIT license.