PHPackages                             hridoy/telr - 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. hridoy/telr

ActiveLibrary[Payment Processing](/categories/payments)

hridoy/telr
===========

Pay online through telr payment gateway

1.2.1(5y ago)110MITPHP

Since Sep 3Pushed 5y agoCompare

[ Source](https://github.com/hridoymahmud71/Telr)[ Packagist](https://packagist.org/packages/hridoy/telr)[ RSS](/packages/hridoy-telr/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (6)Used By (0)

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

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

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

[](#installation)

This is a forked item from
As I could not used his code directly, I have modified some lines.

You can install the package via composer:

```
composer require hridoy/telr
```

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' => [
    // ...
    TelrGateway\TelrServiceProvider::class,
];
```

You can publish using the following provider

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

After that you can create the telr transaction table by running the migrations command: \*If you are facing issue with the `response` colulmn as json due to mariadb version, you can use longtext

```
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 \TelrGateway\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 \TelrGateway\TelrManager();
$telrManager->handleTransactionResponse($request);
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 50% 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 ~184 days

Total

5

Last Release

2077d ago

Major Versions

0.0.1 → 1.02018-09-03

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

laravelpaymenttelrtelr payment

### Embed Badge

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

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

###  Alternatives

[dena-a/iran-payment

a Laravel package to handle Internet Payment Gateways for Iran Banking System

312.4k1](/packages/dena-a-iran-payment)[infyomlabs/laravel-payumoney

Laravel Payumoney Integration Library

113.9k](/packages/infyomlabs-laravel-payumoney)

PHPackages © 2026

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