This package forked from farzai/promptpay https://github.com/farzai/promptpay-qr-php This intends to make it upgradeable for Laravel 11 and Laravel 12 that requires dependencies upgrade
This library that allows you to create PromptPay QR codes. You can generate a QR code for receiving payments through PromptPay, which is a popular payment method in Thailand.
- PHP 8.0 or higher
Modify composer to have repositories mapping to zenepay package
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zenepay/promptpay.git"
}
],
"minimum-stability": "dev",
Now You can install the package globally via composer:
composer require zenepay/promptpayMake sure to place Composer's system-wide vendor bin directory in your $PATH so the promptpay executable can be located by your system. This directory exists in different locations based on your operating system; however, some common locations include:
For macOS
$HOME/.composer/vendor/bin
For GNU / Linux Distributions
GNU / Linux Distributions: $HOME/.config/composer/vendor/bin
For Windows
%USERPROFILE%\AppData\Roaming\Composer\vendor\bin
$ promptpay <phone-number> <amount>For example, to generate a QR code for receiving 100 THB from the phone number 0988888888:
$ promptpay 0988888888 100You can install the package via composer:
composer require zenepay/promptpayFor example, to generate a QR code for receiving 100 THB from the phone number 0988888888:
use Farzai\PromptPay\PromptPay;
$qrCode = PromptPay::create('0988888888', 100);
$imageUri = $qrCode->toDataUri('png');
echo '<img src="' . $imageUri . '" />';Or you can save the QR code to a file:
use Farzai\PromptPay\PromptPay;
$qrCode = PromptPay::create('0988888888', 100):
$imagePath = $qrCode->toFile('qr-code.png');
echo 'QR code saved to ' . $imagePath;composer testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
