Download the PHP package rikudou/czqrpayment without Composer

On this page you can find all versions of the php package rikudou/czqrpayment. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package czqrpayment

QR code payment (CZ)

Tests Codacy Badge Coverage Status Download

A simple library to generate QR payment code for Czech Republic. All methods are documented in source code.

See also QR code payment generator for Slovak, Hungarian or European Union accounts.

Using Symfony? See the QR Payment Bundle.

Installation

Via composer: composer require rikudou/czqrpayment

Usage

You can create the QR payment for an object implementing \Rikudou\Iban\Iban\IbanInterface or from account number and bank account (which is then converted to \Rikudou\Iban\Iban\CzechIbanAdapter object).

See rikudou/iban for description of the interface and classes which let you for example validate the iban and/or the bank account number and bank code.

From IbanInterface implementing classes:

From account number and bank code directly:

Setting payment details

There are two approaches to setting payment details. You can set them in an associative array or using the methods provided in the class.

Using associative array

Using methods

Exceptions

Description of exceptions thrown:

All of these exceptions (except InvalidArgumentException and TypeError) extend the base \Rikudou\CzQrPayment\Exception\QrPaymentException.

QR Code image

This library provides many implementations of QR code image using its sister library rikudou/qr-payment-qr-code-provider. If any supported QR code generating library is installed, the method getQrCode() will return an instance of \Rikudou\QrPaymentQrCodeProvider\QrCode which can be used to get an image containing the generated QR payment data.

List of public methods

Constructor

Params

Example

setOptions()

Sets the options, useful if you don't want to set them in constructor.

Params

Returns

Returns itself, you can use this method for chaining.

Example

getIban()

Returns the iban.

Returns

\Rikudou\Iban\Iban\IbanInterface

Example

getQrString()

Returns the string that should be encoded in QR image.

Returns

string

Example

static fromAccountAndBankCode()

Returns a new instance of the payment object created from the account and bank code. Is pretty much an alias to new QrPayment(new CzechIbanAdapter()).

Params

Returns

Returns itself, you can use this method for chaining.

Example

getQrImage()

Returns a Qr code via suggested third-party library.

Returns

\Endroid\QrCode\QrCode

Example

Options

This is a list of options you can set.

All of these options can be set using the QrPaymentOptions helper class as constants for the constructor or setOptions() or as methods.

For example, the amount can be set in an array using the constant QrPaymentOptions::AMOUNT or using the method setAmount().


All versions of czqrpayment with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3 | ^8.0
rikudou/qr-payment-interface Version ^1.0
rikudou/iban Version ^1.1.1
rikudou/qr-payment-qr-code-provider Version ^1.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rikudou/czqrpayment contains the following files

Loading the files please wait ....