PHPackages                             supergnaw/luxiqr - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. supergnaw/luxiqr

ActiveLibrary[Image &amp; Media](/categories/media)

supergnaw/luxiqr
================

Class for creating QR codes

0.0.2(5mo ago)03AGPL-3.0PHP

Since Apr 6Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/supergnaw/LuxiQR)[ Packagist](https://packagist.org/packages/supergnaw/luxiqr)[ RSS](/packages/supergnaw-luxiqr/feed)WikiDiscussions main Synced today

READMEChangelog (2)DependenciesVersions (3)Used By (0)

LuxiQR: The Luxury QR Code Generator
====================================

[](#luxiqr-the-luxury-qr-code-generator)

Reinventing the wheel, one Quick Response Code at a time.

This is a project simply to learn how QR code generation works. There are a plethora of QR code generators in the wild, so choose which one suits your needs best.

Primary Objectives
------------------

[](#primary-objectives)

- Understand how different data is encoded into a QR code
- Learn how to do polynomial math for Reed-Solomon error correction
    - *(This was a nightmare)*
- Implement settings customization for more control over the final generation
- Have various different output options for maximum integration compatibility

Usage
-----

[](#usage)

### Basic Usage

[](#basic-usage)

```
$qrCode = new LuxiQR(
    data: "https://github.com/supergnaw/LuxiQR",
    eccLevel: "H"
);

echo $qrCode->outputTable();
```

### Factory Methods

[](#factory-methods)

#### Call

[](#call)

```
$qrCode = LuxiQR::Call(
    countryCode: "+1",
    phoneNumber: "(519) 867-5309",
    eccLevel: "H"
);

echo $qrCode->outputTable();
```

#### Email

[](#email)

```
$qrCode = LuxiQR::Email(
    email: "example@domain.com",
    subject: "Test Email",
    body: "This is an example.",
        eccLevel: "H"
);

echo $qrCode->outputTable();
```

#### URL

[](#url)

```
$qrCode = LuxiQR::URL(
    url: "https://www.google.com/",
    eccLevel: "H"
);

echo $qrCode->outputTable();
```

#### WiFi

[](#wifi)

```
$qrCode = LuxiQR::WiFi(
    ssid: "",
    encryption: "WPA",
    password: "correct horse battery staple",
    hidden: false,
    eccLevel: "H"
);

echo $qrCode->outputTable();
```

#### YouTube

[](#youtube)

```
$qrCode = LuxiQR::YouTube(
    url: "https://www.youtube.com/watch?v=w5ebcowAJD8",
    eccLevel: "H"
);

echo $qrCode->outputTable();
```

Various References
------------------

[](#various-references)

- [Barcode Contents](https://github.com/zxing/zxing/wiki/Barcode-Contents)
- [Thonky's QR Code Tutorial](https://www.thonky.com/qr-code-tutorial/)
- [How To Deploy a Static Site from GitHub with DigitalOcean App Platform](https://www.digitalocean.com/community/tutorials/how-to-deploy-a-static-site-from-github-with-digitalocean-app-platform-quickstart)
- [How to Create a QR Code Using JavaScript](https://www.turing.com/kb/creating-qr-code-using-js)
- [Let's develop a QR Code Generator](https://dev.to/maxart2501/series/13444)
- [Creating a QR Code step by step](https://www.nayuki.io/page/creating-a-qr-code-step-by-step)

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance72

Regular maintenance activity

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity29

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~293 days

Total

2

Last Release

159d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/25543199?v=4)[supergnaw](/maintainers/supergnaw)[@supergnaw](https://github.com/supergnaw)

---

Top Contributors

[![supergnaw](https://avatars.githubusercontent.com/u/25543199?v=4)](https://github.com/supergnaw "supergnaw (12 commits)")

### Embed Badge

![Health badge](/badges/supergnaw-luxiqr/health.svg)

```
[![Health](https://phpackages.com/badges/supergnaw-luxiqr/health.svg)](https://phpackages.com/packages/supergnaw-luxiqr)
```

###  Alternatives

[goat1000/svggraph

Generates SVG graphs

135911.1k3](/packages/goat1000-svggraph)[gravatarphp/gravatar

Gravatar URL builder which is most commonly called as a Gravatar library

16653.6k2](/packages/gravatarphp-gravatar)[rsoury/wp-imgix

Rewrites WordPress image URLs to use ImgIX

167.2k](/packages/rsoury-wp-imgix)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
