GitHub - jim9/QrCode: Endroid QR Code Generator

By endroid

Latest Stable Version Build Status Total Downloads License PayPayl donate button

This library helps you generate images containing a QR code.

<?php

use Endroid\QrCode\QrCode;

$qrCode = new QrCode();
$qrCode->setText("Life is too short to be generating QR codes");
$qrCode->setSize(300);
$qrCode->setPadding(10);
$qrCode->render();

QR Code

Symfony

You can use EndroidQrCodeBundle to integrate this service in your Symfony application.

Versioning

Semantic versioning (semver) is applied.

License

This bundle is under the MIT license. For the full copyright and license information, please view the LICENSE file that was distributed with this source code.