This guide lists the breaking changes when upgrading from 6.x.
The bundle no longer requires endroid/installer or symfony/yaml directly.
Builder configuration must now be placed under the builders key.
Before:
endroid_qr_code:
default:
writer: Endroid\QrCode\Writer\PngWriter
size: 300
custom:
writer: Endroid\QrCode\Writer\SvgWriterAfter:
endroid_qr_code:
builders:
default:
writer: Endroid\QrCode\Writer\PngWriter
size: 300
custom:
writer: Endroid\QrCode\Writer\SvgWriterThe QR code route is now registered by the bundle itself. Use bundle configuration:
endroid_qr_code:
route_enabled: true
route_prefix: /qr-codeThe Resources/config/*.yaml files were removed.