chailong / phpqrcode
phpqrcode package
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/chailong/phpqrcode
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2025-12-21 11:38:21 UTC
README
To install this library please follow the next steps:
Install the library using composer:
Add the required module to your composer.json file:
{
"require": {
...
"chailong/phpqrcode": "dev-master"
...
}
}
Then run the command composer update.
Usage
Sample code:
\PHPQRCode\QRcode::png("Test", "/tmp/qrcode.png", 'L', 4, 2);
\PHPQRCode\QRcode::jpg("Test", "/tmp/qrcode.png", 'L', 4, 2);
\PHPQRCode\QRcode::jpeg("Test", "/tmp/qrcode.png", 'L', 4, 2);