PHPackages                             fuelqr/fuel-qrcode - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. fuelqr/fuel-qrcode

ActiveFuel-package[Utility &amp; Helpers](/categories/utility)

fuelqr/fuel-qrcode
==================

Export QR code

02.1kPHP

Since Jul 22Pushed 9y ago1 watchersCompare

[ Source](https://github.com/Amethystos/fuel-qrcode)[ Packagist](https://packagist.org/packages/fuelqr/fuel-qrcode)[ RSS](/packages/fuelqr-fuel-qrcode/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

FuelPHP QRCode
==============

[](#fuelphp-qrcode)

QRCode library created as a FuelPHP package.

Usage
=====

[](#usage)

Load the QRCode package

```
// load the package
\Package::load("qrcode");
```

Output the QR directly, used within a view (ugly)

```
echo \QRCode::png('http://arrggghhh.steadweb.co.uk');
```

or pass the generated QRCode to a view

```
try
{
        $file   = time() . ".png";
        $qrcode = "";

        // generate the QRCode
        \QRCode::png('http://arrggghhh.steadweb.co.uk', $file, QR_ECLEVEL_L, 6, 4, false);

        // check the file has been generated
        // otherwise throw an exception
        if( ! is_file(DOCROOT . $file))
        {
                throw new Exception("Unable to generate QR code");
        }

        $qrcode = Asset::img(Uri::create("/" . $file))
}
catch(\Exception $e)
{
        // log the error
        Log::error($e->getMessage());

        // show something, atleast
        $qrcode = "QRCode wasn't generated, derp.";
}

return \View::forge("qrcode", array("qr" => $qrcode), false);
```

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.3% 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.

### Community

Maintainers

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

---

Top Contributors

[![quang-hiakari](https://avatars.githubusercontent.com/u/5595558?v=4)](https://github.com/quang-hiakari "quang-hiakari (5 commits)")[![steadweb](https://avatars.githubusercontent.com/u/667618?v=4)](https://github.com/steadweb "steadweb (1 commits)")

### Embed Badge

![Health badge](/badges/fuelqr-fuel-qrcode/health.svg)

```
[![Health](https://phpackages.com/badges/fuelqr-fuel-qrcode/health.svg)](https://phpackages.com/packages/fuelqr-fuel-qrcode)
```

###  Alternatives

[concretecms/composer

A fully featured skeleton for a composer managed Concrete site

3711.0k](/packages/concretecms-composer)[novius/laravel-nova-visual-composer

A Laravel Nova field to compose blocks.

1427.9k](/packages/novius-laravel-nova-visual-composer)

PHPackages © 2026

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