a6e6s/rassd-qr-parser

A PHP parser for RASSD GS1 QR codes

Maintainers

Package info

github.com/a6e6s/rassd-qr-parser

pkg:composer/a6e6s/rassd-qr-parser

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 0

dev-main 2025-08-03 12:00 UTC

This package is auto-updated.

Last update: 2026-03-31 13:37:43 UTC


README

A simple PHP library to parse and extract data from RASSD GS1 QR codes.

Installation

You can install the package via Composer:

composer require a6e6s/rassd-qr-parser

Usage

Here is a basic example of how to use the parser.

<?php

require __DIR__ . '/vendor/autoload.php';

use A6e6s\RassdQrParser\RassdQrParser;

$qr = '01062810860101121727040110114487921215645645465456';
$parser = new RassdQrParser($qr);

if ($parser->isValid()) {
    print_r($parser->toArray());
} else {
    echo "Failed to parse QR code.";
}

License

This package is licensed under the MIT License.