PHPackages                             mubarakismail/telr\_payment - 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. mubarakismail/telr\_payment

ActiveLibrary[Payment Processing](/categories/payments)

mubarakismail/telr\_payment
===========================

payment package for telr

01PHP

Since Jan 18Pushed 3y agoCompare

[ Source](https://github.com/Mubarakismail/Telr_payment)[ Packagist](https://packagist.org/packages/mubarakismail/telr_payment)[ RSS](/packages/mubarakismail-telr-payment/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Pay online using telr payment gateway
=====================================

[](#pay-online-using-telr-payment-gateway)

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

[](#installation)

You can install the package via composer:

```
composer require mubarakismail/telr_payment
```

In Laravel starting from 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in `config/app.php` file:

```
'providers' => [
    // ...
    Mubarakismail\TelrPayment\TelrServiceProvider::class,
];
```

You can publish using the following provider

```
php artisan vendor:publish --provider="Mubarakismail\TelrPayment\TelrServiceProvider"
```

After that you can create the telr transaction table by running the migrations command:

```
php artisan migrate
```

When published, [the `config/telr.php` config file](#) contains:

```
return [
    // The current mode is live|production or test
    'test_mode' => env('TELR_TEST_MODE', true),

    // The currency of store

    'currency' => 'SAR',

    // The sale endpoint that receive the params
    // @see https://telr.com/support/knowledge-base/hosted-payment-page-integration-guide
    'sale' => [
        'endpoint' => 'https://secure.telr.com/gateway/order.json',
    ],

    // The hosted payment page use the following params as it explained in the integration guide
    // @see https://telr.com/support/knowledge-base/hosted-payment-page-integration-guide/#request-method-and-format
    'create' => [
        'ivp_method' => "create",
        'ivp_store' => env('TELR_STORE_ID', null),
        'ivp_authkey' => env('TELR_STORE_AUTH_KEY', null),
        'return_auth' => '/handle-payment/success',
        'return_can' => '/handle-payment/cancel',
        'return_decl' => '/handle-payment/declined',
    ]
];
```

Usage
-----

[](#usage)

After creating the route place the following code to redirect to bank page

```
$telrManager = new \Mubarakismail\TelrPayment\TelrManager();

$billingParams = [
        'first_name' => 'Moustafa Gouda',
        'sur_name' => 'Bafi',
        'address_1' => 'Gnaklis',
        'address_2' => 'Gnaklis 2',
        'city' => 'Alexandria',
        'region' => 'San Stefano',
        'zip' => '11231',
        'country' => 'EG',
        'email' => 'example@company.com',
    ];

return $telrManager->pay('ORDER_ID_GOES_HERE', 'TOTAL_AMOUNT', 'DESCRIPTION ...', $billingParams)->redirect();
```

> - note that if you want to avoid sending billing params while creating token to process the payment it's applicable and the `Telr hosted payment page` will require it and will get the customer information on**check**request.

And on telr callback **(Success|Cancel|Declined)** to handle response put the following code:

```
$telrManager = new \Mubarakismail\TelrPayment\TelrManager();
$telrManager->handleTransactionResponse($request);
```

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity1

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity25

Early-stage or recently created project

 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.

### Community

Maintainers

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

---

Top Contributors

[![bafi](https://avatars.githubusercontent.com/u/3964752?v=4)](https://github.com/bafi "bafi (3 commits)")[![Mubarakismail](https://avatars.githubusercontent.com/u/27527180?v=4)](https://github.com/Mubarakismail "Mubarakismail (3 commits)")[![absiddik96](https://avatars.githubusercontent.com/u/20370473?v=4)](https://github.com/absiddik96 "absiddik96 (1 commits)")

### Embed Badge

![Health badge](/badges/mubarakismail-telr-payment/health.svg)

```
[![Health](https://phpackages.com/badges/mubarakismail-telr-payment/health.svg)](https://phpackages.com/packages/mubarakismail-telr-payment)
```

###  Alternatives

[omnipay/paypal

PayPal gateway for Omnipay payment processing library

3156.8M53](/packages/omnipay-paypal)[eduardokum/laravel-boleto

Biblioteca com boletos para o laravel

626351.9k2](/packages/eduardokum-laravel-boleto)[tbbc/money-bundle

This is a Symfony bundle that integrates moneyphp/money library (Fowler pattern): https://github.com/moneyphp/money.

1961.9M](/packages/tbbc-money-bundle)[2checkout/2checkout-php

2Checkout PHP Library

83740.3k2](/packages/2checkout-2checkout-php)[smhg/sepa-qr-data

Generate QR code data for SEPA payments

61717.2k5](/packages/smhg-sepa-qr-data)[omnipay/dummy

Dummy driver for the Omnipay payment processing library

271.2M33](/packages/omnipay-dummy)

PHPackages © 2026

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