petrknap / spayd-qr
Short Payment Descriptor (SPayD) with QR output
Fund package maintenance!
Other
Requires
- php: >=8.1
- endroid/qr-code: ^5.0|^6.0
- moneyphp/money: ^4.1
- petrknap/shorts: ^3.0
- sunfoxcz/spayd-php: ^2.0
Requires (Dev)
- nunomaduro/phpinsights: ^2.11
- phpstan/phpstan: ^1.12
- phpunit/phpunit: ^9.6
- squizlabs/php_codesniffer: ^3.7
This package is auto-updated.
Last update: 2025-03-23 09:26:32 UTC
README
PHP library designed to generate bank payments encoded as QR codes, making transactions faster and more convenient.
Usage
Below is a simple example of generating a QR code for a payment order directly in template:
use Money\Money; use PetrKnap\SpaydQr\QrCode; use PetrKnap\SpaydQr\Spayd; echo '<img src="' . QrCode::asDataUri( Spayd::create( account: 'CZ7801000000000000000123', amount: Money::CZK(79950), ), ) . '">';
The library allows you to customize payment details, such as adding a variable symbol:
use Money\Money; use PetrKnap\SpaydQr\Spayd; Spayd::create( account: 'CZ7801000000000000000123', amount: Money::CZK(79950), )->withVariableSymbol(20250323001);
Instead of specifying amount
, you can use invoice
to define invoice:
use Money\Money; use PetrKnap\SpaydQr\Spayd; Spayd::create( account: 'CZ7801000000000000000123', invoice: Spayd\Sind::create( id: 'FA20250323001', issueDate: new DateTime('2025-03-23'), amount: Money::CZK(79950), ), )->withVariableSymbol(20250323001);
Run composer require petrknap/spayd-qr
to install it.
You can support this project via donation.
The project is licensed under the terms of the LGPL-3.0-or-later
.