Download the PHP package inkvizytor/laravel-przelewy24 without Composer

On this page you can find all versions of the php package inkvizytor/laravel-przelewy24. 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 laravel-przelewy24

Laravel Przelewy24 module

This module makes integration with przelewy24.pl payment system easier. It supports making payments using przelewy24.pl system.

Installation

  1. Run

    in console to install this module

  2. Open config/app.php and add

    in section providers

  3. Run

    in your console to publish default configuration files

  4. Open .env and add your configuration:

    • PRZELEWY24_MERCHANT_ID -a Company or an Individual number, who has signed a contract with Przelewy24 (Merchant ID),
    • PRZELEWY24_POS_ID - the identification number of the shop (default: Merchant ID)
    • PRZELEWY24_CRC -a random string, used to calculate a CRC value, shown in Przelewy24 Admin panel.
    • PRZELEWY24_TEST_SERVER - if true, set the test environment
    • PRZELEWY24_URL_RETURN - Return address, where Client will be redirected to, after the transaction is completed (default 'transfers24/callback').
    • PRZELEWY24_URL_STATUS - address where the status of a transaction is sent. It can be omitted if stored in P24 system (default 'transfers24/status').

Usage

In order to use the system, you need to do a few things:

  1. You need to launch the registration request in order to init payment

  2. You need to handle customer returning routes to your app. By default there are routes 'transfers24/callback'

  3. You should ensure transaction verify. Here you should send verify request of payment after receiving notification about correct transaction from payment system. You need to handle returning routes to status of the transaction which is sent automatically from payment system. By default there are routes 'transfers24/status'

Registration request

This is main request you need to launch to init payment.

The most basic sample code for authorization request could look like this:

This code should be run in controller as it's returning response which will takes few things.

  1. Status registration payment

  2. Token, if registration done with success

  3. Error code return from payment system

  4. Error Message return from payment system

  5. Request parameters send to payment system

For setAmount default currency is PLN. If you want to use other currency, you should use currency constant from \Devpark\Transfers24\Currency class as 2nd parameter. Also please notice that amount you should give to this function is real amount (with decimal places) and not converted already to Przelewy24 format.

For \Devpark\Transfers24\Requests\Transfers24::execute method 2nd parameter decides of redirection to payment system when true or return url for making payment when false

Define customer returning routes

You should create routes that will redirect customer after the completed transaction (those routes will be launched using GET HTTP method),

Handling transaction verify route

To make sure the payment was really successful you should use \Devpark\Transfers24\Requests\Transfers24::receive method. The simplest code could look like this:

This code should be run in controller, because you should return non-empty response when receiving valid przelewy24 request for transaction verify. As you see, you should make sure it was real payment before you process the order and then you need to make sure that it was successful. You can identify payment via session_id (unique ID generate during registration of payment)).

Licence

This package is licenced under the MIT license


All versions of laravel-przelewy24 with dependencies

PHP Build Version
Package Version
Requires laravel/framework Version ~5.0|^6.0|^7.0|^8.0|^9.0
guzzlehttp/guzzle Version ^6.2|6.3|^7.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 inkvizytor/laravel-przelewy24 contains the following files

Loading the files please wait ....