PHPackages                             taron96/omnipay-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. taron96/omnipay-liqpay

ActiveLibrary[Payment Processing](/categories/payments)

taron96/omnipay-liqpay
======================

LiqPay gateway for Omnipay payment processing library

v1.0.0(2y ago)135MITPHPPHP ^8

Since Sep 6Pushed 2y ago1 watchersCompare

[ Source](https://github.com/taron96/omnipay-liqpay)[ Packagist](https://packagist.org/packages/taron96/omnipay-liqpay)[ Docs](https://github.com/taron96/omnipay-liqpay)[ RSS](/packages/taron96-omnipay-liqpay/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

Omnipay: LiqPay
===============

[](#omnipay-liqpay)

**LiqPay driver for the Omnipay Laravel payment processing library**

[![Latest Stable Version](https://camo.githubusercontent.com/d45910f3750eb1634d4ee7d2edac1b7834c43612c3692c199dc6c18c9ddf1662/68747470733a2f2f706f7365722e707567782e6f72672f7461726f6e39362f6f6d6e697061792d6c69717061792f76657273696f6e2e706e67)](https://packagist.org/packages/taron96/omnipay-liqpay)[![Total Downloads](https://camo.githubusercontent.com/9edb1b9951622bd7688448abb9fad916e545d546838224531730ad1d50905114/68747470733a2f2f706f7365722e707567782e6f72672f7461726f6e39362f6f6d6e697061792d6c69717061792f642f746f74616c2e706e67)](https://packagist.org/packages/taron96/omnipay-liqpay)

[Omnipay](https://github.com/thephpleague/omnipay) is a framework agnostic, multi-gateway payment processing library for PHP 5.5+. This package implements LiqPay support for Omnipay.

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

[](#installation)

Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply add it to your `composer.json` file:

```
{
    "require": {
        "taron96/omnipay-liqpay": "v1.0.0"
    }
}
```

And run composer to update your dependencies:

```
composer update

```

Or you can simply run

```
composer require taron96/omnipay-liqpay

```

Basic Usage
-----------

[](#basic-usage)

1. Use Omnipay gateway class:

```
    use Omnipay\Omnipay;
```

2. Initialize LiqPay gateway:

```
    $gateway = Omnipay::create('LiqPay');
    $gateway->setPublicKey(env('LIQPAY_PUBLIC_KEY'));
    $gateway->setPrivateKey(env('LIQPAY_PRIVATE_KEY'));
```

3. Call purchase, pass all necessary data and call sendData. It will return Response object which will contain all necessary data for form submission.

```
    $request = $gateway->purchase();

    $request->setAmount(10);
    $request->setCurrency('USD');
    $request->setDescription('Product payment.');
    $request->setOrderId(XXXX);
    $request->setResultUrl(env('LIQPAY_RETURN_URL'));

    $response = $request->sendData($request->getData());
```

4. Create a webhook controller to handle the callback request at your `LIQPAY_RETURN_URL` and catch the webhook as follows

```
    $gateway = Omnipay::create('LiqPay');
    $gateway->setPublicKey(env('LIQPAY_PUBLIC_KEY'));
    $gateway->setPrivateKey(env('LIQPAY_PRIVATE_KEY'));

    $request = $this->gateway->fetchTransaction();

    $request->setOrderId(XXXX);

    $purchase = $request->send();

    // Do the rest with $purchase and response with 'OK'
    if ($purchase->isSuccessful()) {
        // Your logic
    }

    return new Response('OK');
```

For general usage instructions, please see the main [Omnipay](https://github.com/thephpleague/omnipay)repository.

Support
-------

[](#support)

If you are having general issues with Omnipay, we suggest posting on [Stack Overflow](http://stackoverflow.com/). Be sure to add the [omnipay tag](http://stackoverflow.com/questions/tagged/omnipay), so it can be easily found.

If you want to keep up to date with release announcements, discuss ideas for the project, or ask more detailed questions, there is also a [mailing list](https://groups.google.com/forum/#!forum/omnipay) which you can subscribe to.

If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/taron96/omnipay-liqpay/issues), or better yet, fork the library and submit a pull request.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

979d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f2501bb4813c17f4462bd018160581b7ab8ba5b19022dbbdde3467618f20269f?d=identicon)[taron96](/maintainers/taron96)

---

Top Contributors

[![taron96](https://avatars.githubusercontent.com/u/17341735?v=4)](https://github.com/taron96 "taron96 (2 commits)")

---

Tags

paymentgatewaypaymerchantomnipaypurchaseliqpay

### Embed Badge

![Health badge](/badges/taron96-omnipay-liqpay/health.svg)

```
[![Health](https://phpackages.com/badges/taron96-omnipay-liqpay/health.svg)](https://phpackages.com/packages/taron96-omnipay-liqpay)
```

###  Alternatives

[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

587421.0k11](/packages/lokielse-omnipay-alipay)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
