PHPackages                             nekofar/omnipay-nobitex - 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. nekofar/omnipay-nobitex

ActiveLibrary[Payment Processing](/categories/payments)

nekofar/omnipay-nobitex
=======================

Nobitex driver for the Omnipay PHP payment processing library

v1.0.0-alpha.5(3y ago)20[1 PRs](https://github.com/nekofar/omnipay-nobitex/pulls)MITPHPPHP ^7.0

Since Sep 7Pushed 1y ago1 watchersCompare

[ Source](https://github.com/nekofar/omnipay-nobitex)[ Packagist](https://packagist.org/packages/nekofar/omnipay-nobitex)[ Docs](https://github.com/nekofar/omnipay-nobitex)[ RSS](/packages/nekofar-omnipay-nobitex/feed)WikiDiscussions master Synced 2d ago

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

Omnipay: Nobitex
================

[](#omnipay-nobitex)

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

[![Packagist Version](https://camo.githubusercontent.com/0f3a6c7a1e44e7c9183106eeee15f5c1fef3e63d55ea8df30e3fbfea7b245798/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e656b6f6661722f6f6d6e697061792d6e6f62697465782e737667)](https://packagist.org/packages/nekofar/omnipay-nobitex)[![PHP from Packagist](https://camo.githubusercontent.com/6ce3406323dc550499be7c5703185fb0ffbb31e729ba7272f2c6c69164f484de/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f6e656b6f6661722f6f6d6e697061792d6e6f62697465782e737667)](https://packagist.org/packages/nekofar/omnipay-nobitex)[![Travis (.com) branch](https://camo.githubusercontent.com/23cfff74f61cf21b4e4121c685683ab6522a34f31ce513f00fa7328226aa4b50/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f636f6d2f6e656b6f6661722f6f6d6e697061792d6e6f62697465782f6d61737465722e737667)](https://travis-ci.com/nekofar/omnipay-nobitex)[![Codecov](https://camo.githubusercontent.com/0205380a9613d2818855ef172f20c6c4e9522c0795446ea73d7907f6e8adff07/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f67682f6e656b6f6661722f6f6d6e697061792d6e6f62697465782e737667)](https://codecov.io/gh/nekofar/omnipay-nobitex)[![Packagist](https://camo.githubusercontent.com/4c7202cd36c140d5ffbb40a4015f711bf50b89314cb8ad03e72b23e421adaea3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6e656b6f6661722f6f6d6e697061792d6e6f62697465782e737667)](https://github.com/nekofar/omnipay-nobitex/blob/master/LICENSE)[![Twitter: nekofar](https://camo.githubusercontent.com/e6263e20d601d2873043b18b66c58ef4c5e4718bcae7a0b9c8906f800c260e14/68747470733a2f2f696d672e736869656c64732e696f2f747769747465722f666f6c6c6f772f6e656b6f6661722e7376673f7374796c653d666c6174)](https://twitter.com/nekofar)

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

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

[](#installation)

Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply require `league/omnipay` and `nekofar/omnipay-nobitex` with Composer:

```
composer require league/omnipay nekofar/omnipay-nobitex

```

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

[](#basic-usage)

The following gateways are provided by this package:

- Nobitex

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

Example
-------

[](#example)

### Purchase

[](#purchase)

The result will be a redirect to the gateway or bank.

```
use Omnipay\Omnipay;

$gateway = Omnipay::create('Nobitex');
$gateway->setApiKey('xxxxxxxx');
$gateway->setReturnUrl('https://www.example.com/return');

// Send purchase request
$response = $gateway->purchase([
    'amount' => 10000,
    'description' => 'Some description'
])->send();

// Process response
if ($response->isRedirect()) {
    // Redirect to offsite payment gateway
    $response->redirect();
} else {
    // Payment failed: display message to customer
    echo $response->getMessage();
}
```

On return, the usual completePurchase will provide the result of the transaction attempt.

The final result includes the following methods to inspect additional details:

```
// Send purchase complete request
$response = $gateway->completePurchase([
    'token' => $_REQUEST['token'],
)->send();

// Process response
if ($response->isSuccessful()) {
    // Payment was successful
    print_r($response);
} else {
    // Payment failed: display message to customer
    echo $response->getMessage();
}
```

### Testing

[](#testing)

```
composer test
```

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

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 97.1% 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 ~196 days

Recently: every ~229 days

Total

6

Last Release

1459d ago

### Community

Maintainers

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

---

Top Contributors

[![nekofar](https://avatars.githubusercontent.com/u/147401?v=4)](https://github.com/nekofar "nekofar (34 commits)")[![mend-bolt-for-github[bot]](https://avatars.githubusercontent.com/in/16809?v=4)](https://github.com/mend-bolt-for-github[bot] "mend-bolt-for-github[bot] (1 commits)")

---

Tags

bitcoingatewaylitecoinmerchantnobitexomnipaypaymentpurchasepaymentgatewaybitcoinmerchantomnipaypurchaselitecoinnobitex

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/nekofar-omnipay-nobitex/health.svg)

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

###  Alternatives

[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

587421.0k11](/packages/lokielse-omnipay-alipay)[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)
