PHPackages                             artmin96/omnipay-telcell - 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. artmin96/omnipay-telcell

ActiveLibrary[Payment Processing](/categories/payments)

artmin96/omnipay-telcell
========================

TelCell gateway for Omnipay payment processing library

1.1(2y ago)031MITPHP

Since Aug 31Pushed 2y ago1 watchersCompare

[ Source](https://github.com/ArtMin96/omnipay-telcell-wallet)[ Packagist](https://packagist.org/packages/artmin96/omnipay-telcell)[ Docs](https://github.com/razmiksaghoyan/omnipay-telcell)[ RSS](/packages/artmin96-omnipay-telcell/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (4)Used By (0)

Omnipay: TelCell
================

[](#omnipay-telcell)

**TelCell driver for the Omnipay Laravel payment processing library**

[![Latest Stable Version](https://camo.githubusercontent.com/c50a50f133d5d54ad0ea45ed8d5b250889a85a9c3270b385cefd0651b4e96cf1/68747470733a2f2f706f7365722e707567782e6f72672f72617a6d696b736167686f79616e2f6f6d6e697061792d74656c63656c6c2f76657273696f6e2e706e67)](https://packagist.org/packages/razmiksaghoyan/omnipay-telcell)[![Total Downloads](https://camo.githubusercontent.com/8935c0303df652c2d83ba1a17d035af02ebf5e42dec256b28720700dafd82074/68747470733a2f2f706f7365722e707567782e6f72672f72617a6d696b736167686f79616e2f6f6d6e697061792d74656c63656c6c2f642f746f74616c2e706e67)](https://packagist.org/packages/razmiksaghoyan/omnipay-telcell)

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

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

[](#basic-usage)

1. Use Omnipay gateway class:

```
    use Omnipay\Omnipay;
```

2. Initialize TelCell gateway:

```
    $gateway = Omnipay::create('Telcell');
    $gateway->setShopId(env('SHOP_ID'));
    $gateway->setShopKey(env('SHOP_KEY'));
    $gateway->setSum(10); // Amount to charge
    $gateway->setInfo([]); // Additional information
    $gateway->setTransactionId(XXXX); // Transaction ID from your system
```

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

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

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

```
    $gateway = Omnipay::create('Telcell');
    $gateway->setShopId(env('SHOP_ID'));
    $gateway->setShopKey(env('SHOP_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.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

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

Total

3

Last Release

966d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/477c7f16e7301036e026f9374ec9f2b9f6b396f563e87d556a78d9810cbfbb68?d=identicon)[ArtMin96](/maintainers/ArtMin96)

---

Top Contributors

[![ArtMin96](https://avatars.githubusercontent.com/u/29732308?v=4)](https://github.com/ArtMin96 "ArtMin96 (2 commits)")

---

Tags

paymentgatewaypaymerchantomnipaypurchasetelcell

### Embed Badge

![Health badge](/badges/artmin96-omnipay-telcell/health.svg)

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

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