Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Latest commit

 

History

History

php

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

UONET+ QR Code converter for PHP

Total Downloads

Instalation

$ composer require wulkanowy/qr dev-master

Usage

<?php

use function Wulkanowy\UonetQRCodeConverter\decode;
use function Wulkanowy\UonetQRCodeConverter\encode;

require 'vendor/autoload.php';

$decoded = decode($password, $content);

$encoded = encode($password, $decoded);

Tests

$ composer test