runroom / samples-bundle
Add a render event before rendering templates
Installs: 25 080
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 11
Forks: 5
Open Issues: 6
Type:symfony-bundle
Requires
- php: ^7.4 || ^8.0
- a2lix/translation-form-bundle: ^3.0.4
- doctrine/doctrine-bundle: ^2.4
- egulias/email-validator: ^3.0
- friendsofsymfony/ckeditor-bundle: ^2.2
- gedmo/doctrine-extensions: ^3.0
- hubspot/hubspot-php: ^5.0
- knplabs/doctrine-behaviors: ^2.0.6
- runroom-packages/form-handler-bundle: ^0.16
- runroom-packages/render-event-bundle: ^0.16
- runroom-packages/sortable-behavior-bundle: ^0.16
- runroom-packages/translation-bundle: ^0.16
- sonata-project/admin-bundle: ^3.103 || ^4.9
- sonata-project/doctrine-extensions: ^1.13 || ^2.0
- sonata-project/doctrine-orm-admin-bundle: ^3.34 || ^4.0
- sonata-project/media-bundle: ^3.32 || ^4.0
- symfony/config: ^4.4 || ^5.4 || ^6.0
- symfony/dependency-injection: ^4.4 || ^5.4 || ^6.0
- symfony/event-dispatcher: ^4.4 || ^5.4 || ^6.0
- symfony/event-dispatcher-contracts: ^1.1 || ^2.0 || ^3.0
- symfony/form: ^4.4 || ^5.4 || ^6.0
- symfony/framework-bundle: ^4.4 || ^5.4 || ^6.0
- symfony/http-foundation: ^4.4.7 || ^5.4 || ^6.0
- symfony/http-kernel: ^4.4.13 || ^5.4 || ^6.0
- symfony/options-resolver: ^4.4 || ^5.4 || ^6.0
- symfony/translation: ^4.4 || ^5.4 || ^6.0
- symfony/validator: ^4.4 || ^5.4 || ^6.0
- symfony/yaml: ^4.4 || ^5.4 || ^6.0
- twig/twig: ^2.12 || ^3.0
Requires (Dev)
- a2lix/auto-form-bundle: ^0.4
- ergebnis/composer-normalize: ^2.2
- friendsofphp/php-cs-fixer: ^3.0
- matthiasnoback/symfony-config-test: ^4.2
- matthiasnoback/symfony-dependency-injection-test: ^4.1
- phpstan/phpstan: ^1.0
- phpstan/phpstan-doctrine: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpstan/phpstan-strict-rules: ^1.0
- phpstan/phpstan-symfony: ^1.0
- phpunit/phpunit: ^9.3
- psalm/plugin-phpunit: ^0.17
- psalm/plugin-symfony: ^3.0
- rector/rector: ^0.14
- runroom-packages/testing: ^0.16
- symfony/phpunit-bridge: ^6.0
- vimeo/psalm: ^4.0
- weirdan/doctrine-psalm-plugin: ^2.0
- zenstruck/foundry: ^1.10
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.