PHPackages                             rinzlerch/omnipay-coinpayments - 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. rinzlerch/omnipay-coinpayments

ActiveLibrary[Payment Processing](/categories/payments)

rinzlerch/omnipay-coinpayments
==============================

Coinpayments driver for the Omnipay payment processing library

v2.1(4y ago)026MITPHP

Since Jul 21Pushed 4y agoCompare

[ Source](https://gitlab.com/rinzler-labs/omnipay-coinpayments)[ Packagist](https://packagist.org/packages/rinzlerch/omnipay-coinpayments)[ Docs](https://github.com/rinzlerch/omnipay-coinpayments)[ RSS](/packages/rinzlerch-omnipay-coinpayments/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)Dependencies (3)Versions (6)Used By (0)

Omnipay: CoinPayments
=====================

[](#omnipay-coinpayments)

**CoinPayments driver for the Omnipay PHP payment processing library**

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

Package originally based on InkedCurtis, however the original has gone from GitHub, so we have reuploaded it.

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

[](#installation)

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

```
{
    "require": {
        "rinzlerch/omnipay-coinpayments": "^1.0"
    }
}
```

And run composer to update your dependencies:

```
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

```

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

[](#basic-usage)

The following gateways are provided by this package:

- Coinpayments

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

Example
-------

[](#example)

### Create a transaction

[](#create-a-transaction)

```
$gateway = Omnipay::create('Coinpayments');

$gateway->initialize(array(
    'publicKey' => '',
    'privateKey => ''
));

$response = $gateway->transaction([
    'amount' => 10.00,
    'currency1' => 'USD',
    'currency2' => 'BTC',
    //'address' => '', // leave blank send to follow your settings on the Coin Settings page
    'item_name' => 'Test Item/Order Description',
    'ipn_url' => 'https://yourserver.com/ipn_handler.php',
])->send();

if ($response->isSuccessful()) {
    $data = $response->getData();
}
```

### Make a withdrawal

[](#make-a-withdrawal)

```
$gateway = Omnipay::create('Coinpayments');

$gateway->initialize(array(
    'publicKey' => '',
    'privateKey => ''
));

$response = $gateway->withdrawal([
    'amount' => 0.1,
    'currency' => 'BTC',
    'address' => '1LC9Tn7ekRXhMTzh7ZJnZ55XUBM4ZGuLhJ'
])->send();

if ($response->isSuccessful()) {
    $data = $response->getData();
}
```

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/rinzlerch/omnipay-coinpayments/issues), or better yet, fork the library and submit a pull request.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity59

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

Every ~123 days

Total

5

Last Release

1629d ago

Major Versions

v1.0 → v2.02020-07-21

### Community

Maintainers

![](https://www.gravatar.com/avatar/937bb3c1177c98b805919b03e6905c851c6d9479ef61e45b20de7b8fc9996d4e?d=identicon)[rinzlerch](/maintainers/rinzlerch)

---

Top Contributors

[![ajarmoszuk](https://avatars.githubusercontent.com/u/5645408?v=4)](https://github.com/ajarmoszuk "ajarmoszuk (3 commits)")

---

Tags

paymentgatewaybitcoinpaymerchantomnipaycoinpayments

### Embed Badge

![Health badge](/badges/rinzlerch-omnipay-coinpayments/health.svg)

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

###  Alternatives

[omnipay/bitpay

BitPay driver for the Omnipay payment processing library

1383.2k1](/packages/omnipay-bitpay)[coingate/omnipay-coingate

CoinGate driver for the Omnipay payment processing library

1037.0k1](/packages/coingate-omnipay-coingate)

PHPackages © 2026

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