2.0.0
What's Changed
- Allow passing mutliple QROptions #10 by @ali-alharthi
🚨 Brack Change
The render
function now accept a array of options for render the QR, you can find the all available options at (https://github.com/chillerlan/php-qrcode)
Before
$displayQRCodeAsBase64 = GenerateQrCode::fromArray([
.....
])->render(3);
After
$displayQRCodeAsBase64 = GenerateQrCode::fromArray([
.....
])->render(['scale' => 3]);