PHPackages                             alekseyblymin/omnipay-bitbanker - 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. [API Development](/categories/api)
4. /
5. alekseyblymin/omnipay-bitbanker

ActiveLibrary[API Development](/categories/api)

alekseyblymin/omnipay-bitbanker
===============================

bitbanker gateway for Omnipay

V0.2.16(3y ago)0181MITPHP

Since Jan 30Pushed 3y ago1 watchersCompare

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

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

```
    composer require league/omnipay alekseyblymin/omnipay-bitbanker
```

Примеры использования
=====================

[](#примеры-использования)

Создание счета
--------------

[](#создание-счета)

```
use Omnipay\Omnipay;

$gateway = Omnipay::create('bitBanker');

$gateway->setApiKey('1234');

//Включение тестового режима
$gateway->setTestMode(true);

$response = $gateway->purchase([
    "payment_currencies" => ["BTC"],
    "currency" => "RUB",
    "amount" => 5000,
    "description" => "покупка ноутбука модель ACer..",
    "header" => "Фирма",
    "is_convert_payments" => false,
    "data" => "{}",
])->send();

if ($response->isSuccessful()){

    echo $response->getInvoiceId();
    echo $response->getInvoiceLink();

} else {

    echo $response->getMessage();

}
```

Получение статуса платежа через вебхук
--------------------------------------

[](#получение-статуса-платежа-через-вебхук)

```
use Omnipay\Omnipay;

$gateway = Omnipay::create('bitBanker');

$gateway->setApiKey('1234')
        ->setSecretKey('4321');

//Данные которые использовались при создании счета
$response = $gateway->completePurchase([
    "transactionId" => "321dd",
    "currency" => "RUB",
    "amount" => 5000,
    "description" => "покупка ноутбука модель ACer..",
    "header" => "Фирма",
]);

$response->getTransactionId();

if ($response->isSuccessful()) {
    print_r($response->getAmount());
    print_r($response->getCurrency());
}
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity58

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 ~6 days

Recently: every ~15 days

Total

18

Last Release

1455d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9004508d4ce55c97bab4d839444f5374e15ff07898904b447a4e85eb82f09094?d=identicon)[AlekseyBlymin](/maintainers/AlekseyBlymin)

---

Top Contributors

[![AlekseyBlymin](https://avatars.githubusercontent.com/u/98334866?v=4)](https://github.com/AlekseyBlymin "AlekseyBlymin (1 commits)")

---

Tags

apipaymentbitbanker

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/alekseyblymin-omnipay-bitbanker/health.svg)

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

###  Alternatives

[everypay/everypay-php

1742.0k](/packages/everypay-everypay-php)

PHPackages © 2026

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