From 64a36970d6c4a90c1ab738e0b859b4fffa18c603 Mon Sep 17 00:00:00 2001 From: wn_ Date: Thu, 21 Nov 2024 17:27:15 +0000 Subject: Bump 'chillerlan/php-qrcode' to 5.0.x. * Maintains PHP `7.4` compatibility and adds PHP `8.4` compatibility * The `4.4.x` branch does the same, but I didn't see any reason not to go to `5.0.x`. * https://github.com/chillerlan/php-qrcode/releases --- vendor/chillerlan/php-qrcode/examples/html.php | 102 ------------------------- 1 file changed, 102 deletions(-) delete mode 100644 vendor/chillerlan/php-qrcode/examples/html.php (limited to 'vendor/chillerlan/php-qrcode/examples/html.php') diff --git a/vendor/chillerlan/php-qrcode/examples/html.php b/vendor/chillerlan/php-qrcode/examples/html.php deleted file mode 100644 index aa5305d24..000000000 --- a/vendor/chillerlan/php-qrcode/examples/html.php +++ /dev/null @@ -1,102 +0,0 @@ - - * @copyright 2017 Smiley - * @license MIT - */ - -namespace chillerlan\QRCodeExamples; - -use chillerlan\QRCode\{QRCode, QROptions}; - -require_once '../vendor/autoload.php'; - -header('Content-Type: text/html; charset=utf-8'); - -?> - - - - - - QRCode test - - - -
- 5, - 'outputType' => QRCode::OUTPUT_MARKUP_HTML, - 'eccLevel' => QRCode::ECC_L, - 'moduleValues' => [ - // finder - 1536 => '#A71111', // dark (true) - 6 => '#FFBFBF', // light (false) - // alignment - 2560 => '#A70364', - 10 => '#FFC9C9', - // timing - 3072 => '#98005D', - 12 => '#FFB8E9', - // format - 3584 => '#003804', - 14 => '#00FB12', - // version - 4096 => '#650098', - 16 => '#E0B8FF', - // data - 1024 => '#4A6000', - 4 => '#ECF9BE', - // darkmodule - 512 => '#080063', - // separator - 8 => '#AFBFBF', - // quietzone - 18 => '#FFFFFF', - ], - ]); - - echo (new QRCode($options))->render($data); - -?> -
- - - - - -- cgit v1.2.3-54-g00ecf