jmf / preset-rendering-bundle
Preset rendering bundle for Symfony
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.3
- jmf/template-rendering: ^1.0
- symfony/config: ^7.0
- symfony/framework-bundle: ^7.0
- symfony/property-access: ^7.0
- webmozart/assert: ^1.0
Requires (Dev)
- phpmd/phpmd: ^2.13
- phpstan/extension-installer: ^1.4
- phpstan/phpstan: ^2.1
- phpstan/phpstan-strict-rules: ^2.0
- phpunit/phpunit: ^12.1
- rector/rector: ^2.0
- squizlabs/php_codesniffer: ^3.9
This package is auto-updated.
Last update: 2025-07-25 22:20:49 UTC
README
Symfony bundle which allows rendering preset templates.
Installation & Requirements
Install with Composer:
composer require jmf/preset-rendering-bundle
If you have Flex installed, the bundle is then instantly available without any need for initial configuration.
If not, complete your config/bundles.php
file as indicated below:
<?php return [ // ... // Other existing bundles. // ... Jmf\PresetRendering\PresetRenderingBundle::class => ['all' => true], ];