PHPackages                             armyan/omnipay-paddle - 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. armyan/omnipay-paddle

ActiveLibrary[Payment Processing](/categories/payments)

armyan/omnipay-paddle
=====================

Paddle driver for the Omnipay Laravel Payment processing library

1.1.0(6y ago)048[1 issues](https://github.com/arm-yan/paddle/issues)MITPHP

Since Jan 14Pushed 6y ago1 watchersCompare

[ Source](https://github.com/arm-yan/paddle)[ Packagist](https://packagist.org/packages/armyan/omnipay-paddle)[ Docs](https://github.com/armyan/omnipay-paddle)[ RSS](/packages/armyan-omnipay-paddle/feed)WikiDiscussions master Synced today

READMEChangelog (5)Dependencies (1)Versions (7)Used By (0)

Omnipay: Paddle
===============

[](#omnipay-paddle)

**Paddle driver for the Omnipay Laravel payment processing library**[![Latest Stable Version](https://camo.githubusercontent.com/186c0d2ed9f7fe2c3e59107ab45b4464eaa036fe0d9700c326e01eb739de4cb5/68747470733a2f2f706f7365722e707567782e6f72672f61726d79616e2f6f6d6e697061792d706164646c652f762f737461626c65)](https://packagist.org/packages/armyan/omnipay-paddle)[![Total Downloads](https://camo.githubusercontent.com/05657340ff99d854786bd82b07fcad171b933573ebfa50df1cad2d5f6b205e97/68747470733a2f2f706f7365722e707567782e6f72672f61726d79616e2f6f6d6e697061792d706164646c652f646f776e6c6f616473)](https://packagist.org/packages/armyan/omnipay-paddle)

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

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

[](#installation)

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

```
{
    "require": {
        "armyan/omnipay-paddle": "^1.0.0"
    }
}
```

And run composer to update your dependencies:

```
composer update

```

Or you can simply run

```
composer require armyan/omnipay-paddle

```

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

[](#basic-usage)

1. Use Omnipay gateway class:

```
    use Omnipay\Omnipay;
```

2. Initialize Paddle gateway:

```
    $gateway = Omnipay::create('Paddle');
    $gateway->setVendorId(env('VENDOR_KEY'));
    $gateway->setEnvironment(env('VENDOR_ENV'));
    $gateway->setProduct(1159); // Product/Subscription ID from Paddle
    $gateway->setTransactionId(XXXX); // Transaction ID from your system
```

3. Call purchase, it will automatically redirect to Paddle's hosted page

```
    $purchase = $gateway->purchase()->send();
    $purchase->redirect();
```

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

```
    $gateway = Omnipay::create('Paddle');
    $gateway->setVendorId(env('VENDOR_KEY'));

    $purchase = $gateway->completePurchase()->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 anouncements, 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/arm-yan/omnipay-paddle/issues), or better yet, fork the library and submit a pull request.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Every ~2 days

Total

5

Last Release

2299d ago

### Community

Maintainers

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

---

Tags

paymentgatewaypaymerchantomnipaypurchasepaddle

### Embed Badge

![Health badge](/badges/armyan-omnipay-paddle/health.svg)

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

###  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)
