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

ActiveLibrary[Payment Processing](/categories/payments)

arm092/omnipay-telcell
======================

Telcell gateway for Omnipay payment processing library

2.0.0(1mo ago)1444↓26.7%MITPHPPHP ^8.2

Since Nov 7Pushed 3y agoCompare

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

READMEChangelog (4)Dependencies (12)Versions (6)Used By (0)

Omnipay: Telcell
================

[](#omnipay-telcell)

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

[![Latest Stable Version](https://camo.githubusercontent.com/22ad6776f7f2a7d05d46f1d5ad4d8132f0b7e18a29954442aebb811cef555e7f/68747470733a2f2f706f7365722e707567782e6f72672f61726d3039322f6f6d6e697061792d74656c63656c6c2f76657273696f6e2e706e67)](https://packagist.org/packages/arm092/omnipay-telcell)[![Total Downloads](https://camo.githubusercontent.com/832cc8f820b947c138088c87073ddf371cab256a0d1d9f4fedd46ee4eb3f5a1a/68747470733a2f2f706f7365722e707567782e6f72672f61726d3039322f6f6d6e697061792d74656c63656c6c2f642f746f74616c2e706e67)](https://packagist.org/packages/arm092/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.

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

[](#installation)

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

```
{
    "require": {
        "arm092/omnipay-telcell": "~1.0"
    }
}
```

And run composer to update your dependencies:

```
composer update

```

Or you can simply run

```
composer require arm092/omnipay-telcell

```

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

[](#basic-usage)

1. Use Omnipay gateway class:

```
    use Omnipay\Omnipay;
```

2. Initialize Telcell gateway:

```
    $gateway = Omnipay::create('Telcell');
    $gateway->setShopId(env('TELCELL_SHOP_ID'));
    $gateway->setShopKey(env('TELCELL_SHOP_KEY'));
    $gateway->setLanguage(\App::getLocale()); // Language
    $gateway->setAmount(200); // Amount to charge
    $gateway->setDescription(1); // Product description
    $gateway->setValidDays(1); // Days during which the invoice is valid
    $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 `CALLBACK_URL` and catch the webhook as follows

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

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

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance50

Moderate activity, may be stable

Popularity19

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Total

5

Last Release

50d ago

Major Versions

1.0.3 → 2.0.02026-03-29

PHP version history (2 changes)1.0.0PHP ^7.2|8.\*

2.0.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/164d92f2197474470e0481c423db3b73140c82abdae8a9427e0dfba087e94bf3?d=identicon)[arm092](/maintainers/arm092)

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (116 commits)")[![amacneil](https://avatars.githubusercontent.com/u/637671?v=4)](https://github.com/amacneil "amacneil (110 commits)")[![delatbabel](https://avatars.githubusercontent.com/u/2335362?v=4)](https://github.com/delatbabel "delatbabel (25 commits)")[![greydnls](https://avatars.githubusercontent.com/u/1276798?v=4)](https://github.com/greydnls "greydnls (21 commits)")[![judgej](https://avatars.githubusercontent.com/u/395934?v=4)](https://github.com/judgej "judgej (19 commits)")[![arm092](https://avatars.githubusercontent.com/u/26311312?v=4)](https://github.com/arm092 "arm092 (9 commits)")[![timgws](https://avatars.githubusercontent.com/u/1050232?v=4)](https://github.com/timgws "timgws (6 commits)")[![eileenmcnaughton](https://avatars.githubusercontent.com/u/336308?v=4)](https://github.com/eileenmcnaughton "eileenmcnaughton (6 commits)")[![pixelchutes](https://avatars.githubusercontent.com/u/352182?v=4)](https://github.com/pixelchutes "pixelchutes (5 commits)")[![aimeos](https://avatars.githubusercontent.com/u/8647429?v=4)](https://github.com/aimeos "aimeos (5 commits)")[![aderuwe](https://avatars.githubusercontent.com/u/1125184?v=4)](https://github.com/aderuwe "aderuwe (4 commits)")[![pilot](https://avatars.githubusercontent.com/u/28564?v=4)](https://github.com/pilot "pilot (4 commits)")[![iamlucianojr](https://avatars.githubusercontent.com/u/3333167?v=4)](https://github.com/iamlucianojr "iamlucianojr (4 commits)")[![jherbiere-giift](https://avatars.githubusercontent.com/u/3124325?v=4)](https://github.com/jherbiere-giift "jherbiere-giift (3 commits)")[![incarnate](https://avatars.githubusercontent.com/u/1253491?v=4)](https://github.com/incarnate "incarnate (3 commits)")[![nickyr](https://avatars.githubusercontent.com/u/1389687?v=4)](https://github.com/nickyr "nickyr (3 commits)")[![vveselinov](https://avatars.githubusercontent.com/u/13038584?v=4)](https://github.com/vveselinov "vveselinov (3 commits)")[![winzou](https://avatars.githubusercontent.com/u/702928?v=4)](https://github.com/winzou "winzou (2 commits)")[![AndrewCarterUK](https://avatars.githubusercontent.com/u/6486835?v=4)](https://github.com/AndrewCarterUK "AndrewCarterUK (2 commits)")[![anush](https://avatars.githubusercontent.com/u/109667?v=4)](https://github.com/anush "anush (2 commits)")

---

Tags

paymentgatewaypaymerchantomnipaypurchasetelcell

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[omnipay/common

Common components for Omnipay payment processing library

35119.0M1.0k](/packages/omnipay-common)[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)
