PHPackages                             fintech-fab/creditpilot - 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. fintech-fab/creditpilot

AbandonedService[Payment Processing](/categories/payments)

fintech-fab/creditpilot
=======================

CreditPilot payment component

0.1(10y ago)04141MITPHP

Since Dec 11Pushed 10y ago10 watchersCompare

[ Source](https://github.com/fintech-fab/creditpilot)[ Packagist](https://packagist.org/packages/fintech-fab/creditpilot)[ RSS](/packages/fintech-fab-creditpilot/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (4)Used By (0)

CreditPilot Payment
===================

[](#creditpilot-payment)

Требования
==========

[](#требования)

- php &gt;=5.4.0
- MySQL Database
- composer

Установка
=========

[](#установка)

### Composer

[](#composer)

```
"repositories": [
  {
   "url": "https://github.com/fintech-fab/creditpilot.git",
   "type": "git"
  }
 ],
 "require": {
    "fintech-fab/creditpilot": "dev-master"
 }

composer update

```

### Использование

[](#использование)

```
	use FintechFab\Payments\CreditPilotPayment\CreditPilotPayment;
	use FintechFab\Payments\CreditPilotPayment\CreditPilot;

	// установим ID провайдеров для каждого канала, в примере тестовые ID
	$providers = array(
    		CreditPilotPayment::CHANNEL_CREDIT_PILOT_TELE2     => 540792152,
    		CreditPilotPayment::CHANNEL_CREDIT_PILOT_MTS       => 540792152,
    		CreditPilotPayment::CHANNEL_CREDIT_PILOT_BEELINE   => 540792152,
    		CreditPilotPayment::CHANNEL_CREDIT_PILOT_MEGAFON   => 540792152,
    		CreditPilotPayment::CHANNEL_CREDIT_PILOT_BANK_CARD => 657871990,
	);

	$creditPilotPayment = new CreditPilotPayment('user', 'password', $providers);

	// если используется без Laravel, то создаем коннект к БД, в Laravel будет использован Eloquent и connectDb() не нужен
	$creditPilotPayment->connectDb('mysql', 'localhost', 'creditpilot', 'creditpilot', 'creditpilot', 'tbl_');

	// уникальный ID трансфера
	$transferId = '12345678';

	// отправляем деньги на мобильный Билайн
	$result = $creditPilotPayment->doTransfer($transferId, '9055555555', CreditPilotPayment::CHANNEL_CREDIT_PILOT_BEELINE, '123');

	if($result === true){
		// получаем информацию о трансфере из БД
		$transfer = CreditPilot::whereRaw('transfer_queue_id = ' . $transferId)->first();

		// запрашиваем статус трансфера
		$status = $creditPilotPayment->getTransferStatus($transferId, CreditPilotPayment::CHANNEL_CREDIT_PILOT_BEELINE, $transfer->bill_number);

		//после getTransferStatus можно получить информацию о сервис-провайдере платежа

		$serviceProviderId = $this->getServiceProviderId(); // ID провайдера в КредитПилоте, для одного провайдера может быть 2 разных ID
        $serviceProviderCode = $this->getServiceProviderCode(); // внутренний код провайдера в библиотеке, всегда 1 код на провайдера
        $serviceProviderName = $this->getServiceProviderName(); // текстовое имя сервис-провайдера
	}
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75.9% 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 ~20 days

Total

2

Last Release

3990d ago

Major Versions

0.1 → 5.0.x-dev2015-06-09

### Community

Maintainers

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

---

Top Contributors

[![ayvan](https://avatars.githubusercontent.com/u/5585701?v=4)](https://github.com/ayvan "ayvan (22 commits)")[![vyuldashev](https://avatars.githubusercontent.com/u/1809081?v=4)](https://github.com/vyuldashev "vyuldashev (7 commits)")

### Embed Badge

![Health badge](/badges/fintech-fab-creditpilot/health.svg)

```
[![Health](https://phpackages.com/badges/fintech-fab-creditpilot/health.svg)](https://phpackages.com/packages/fintech-fab-creditpilot)
```

###  Alternatives

[cybersource/rest-client-php

Client SDK for CyberSource REST APIs

39881.3k6](/packages/cybersource-rest-client-php)[buckaroo/sdk

Buckaroo payment SDK

12189.1k9](/packages/buckaroo-sdk)[contica/facturador-electronico-cr

Un facturador de código libre para integrar facturación electrónica en Costa Rica a un proyecto PHP

2128.8k](/packages/contica-facturador-electronico-cr)[asciisd/knet

Knet package is provides an expressive, fluent interface to KNet's payment services.

141.1k](/packages/asciisd-knet)

PHPackages © 2026

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