Skip to content

2.0.0

Compare
Choose a tag to compare
@salkhwlani salkhwlani released this 14 Dec 18:34
· 30 commits to master since this release
70f548d

What's Changed

🚨 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]);