PHPackages                             evolutionlp/liqpay - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. evolutionlp/liqpay

ActiveLibrary[Payment Processing](/categories/payments)

evolutionlp/liqpay
==================

Laravel LiqPay Client

v1.0.0(1y ago)0259MITPHPPHP ^7.3|^8.0

Since Mar 26Pushed 1y agoCompare

[ Source](https://github.com/AzureRockn/Liqpay)[ Packagist](https://packagist.org/packages/evolutionlp/liqpay)[ RSS](/packages/evolutionlp-liqpay/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (1)Dependencies (9)Versions (3)Used By (0)

Laravel Liqpay Client
=====================

[](#laravel-liqpay-client)

[![Code Coverage](https://camo.githubusercontent.com/f53a02a1972f0b3ac84886d41e9235efd15eb49d8fcd51f5c26e6a1e5b77ed6f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f4469676974616c2d546872656164732f4c6971706179)](https://github.com/Digital-Threads/Liqpay/releases) [![License](https://camo.githubusercontent.com/4a23b7a26c2f6198fd557d36ad1347458c09464ff66661cd9bfd9e93180962c6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6469676974616c2d746872656164732f6c6971706179)](https://github.com/Digital-Threads/Liqpay/blob/master/LICENSE) [![Code Coverage](https://camo.githubusercontent.com/fe1d32e8aa2f219aac71401a12b2200270c487973046e04b237f65f2dbf46b5a/68747470733a2f2f636f6465636f762e696f2f67682f4469676974616c2d546872656164732f4c69717061792f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/Digital-Threads/Liqpay)

Installation
------------

[](#installation)

Run `composer require digital-threads/liqpay`

Configurations
--------------

[](#configurations)

[LiqPay](https://www.liqpay.ua) client requires following configurations to be set in your environment:

KeyDescription`LIQPAY_PUBLIC_KEY`[LiqPay Public Key](https://www.liqpay.ua/ru/registration)`LIQPAY_PRIVATE_KEY`[LiqPay Private Key](https://www.liqpay.ua/ru/registration)`LIQPAY_DEFAULT_CURRENCY`Default order currency that will be used if none will be specified for each requestAlternatively you can publish package configurations and specify your own boundaries:

`php artisan vendor:publish --provider='DigitalThreads\LiqPay\LiqPayServiceProvider' --tag='config'`

Usage
-----

[](#usage)

After package configurations were specified you can use `DigitalThreads\LiqPay\LiqPay` facade for your payment operations.

### Checkout

[](#checkout)

In order to render LiqPay form you may want to securly recieve [Checkout encoded form parameters](https://www.liqpay.ua/documentation/api/aquiring/checkout/doc) from your backend API like following:

#### PaymentController.php

[](#paymentcontrollerphp)

```
