runroom / samples-bundle
Add a render event before rendering templates
Installs: 49 482
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 9
Forks: 6
Open Issues: 5
Type:symfony-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
- dev-master / 0.x-dev
- 0.15.1
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.2
- 0.12.1
- 0.12.0
- 0.11.1
- 0.11.0
- 0.10.5
- 0.10.4
- v0.10.3
- v0.10.2
- v0.10.1
- v0.10.0
- v0.9.0
- v0.8.0
- v0.7.2
- v0.7.1
- v0.7.0
- v0.6.0
- v0.5.0
- v0.4.1
- v0.4.0
- 0.3.1
- 0.3.0
- v0.2.0
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-jordisala1991-patch-1
This package is auto-updated.
Last update: 2024-11-05 16:49:53 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.