PHPackages                             ttechnos/telebirr - 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. ttechnos/telebirr

ActiveLibrary[Payment Processing](/categories/payments)

ttechnos/telebirr
=================

Laravel package for Telebirr payment integration

021PHP

Since Dec 8Pushed 5mo agoCompare

[ Source](https://github.com/titan36/telebirr-php)[ Packagist](https://packagist.org/packages/ttechnos/telebirr)[ RSS](/packages/ttechnos-telebirr/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Telebirr Laravel Package
========================

[](#telebirr-laravel-package)

A Laravel package to integrate **Telebirr payment gateway**. Provides easy methods to create orders, get Fabric tokens, and verify signatures.

1 Setup
-------

[](#1-setup)

### 1. Add environment variables

[](#1-add-environment-variables)

Add the following to your `.env` file:

```
TELEBIRR_PRIVATE_KEY_PATH=storage/app/telebirr/keys/private_key.pem
TELEBIRR_PUBLIC_KEY_PATH=storage/app/telebirr/keys/public_key.pem
TELEBIRR_WEB_BASE_URL=https://developerportal.ethiotelebirr.et:38443/payment/web/paygate?
TELEBIRR_BASE_URL=https://developerportal.ethiotelebirr.et:38443/apiaccess/payment/gateway
TELEBIRR_FABRIC_APP_ID=
TELEBIRR_APP_SECRET=
TELEBIRR_MERCHANT_APP_ID=
TELEBIRR_MERCHANT_CODE=
TELEBIRR_SSL_VERIFY=false
```

> **Note:** Fill in your Fabric App ID, App Secret, Merchant App ID, and Merchant Code.

### 2. Copy the keys

[](#2-copy-the-keys)

Place your keys in the path specified in `.env`:

```
storage/app/telebirr/keys/private_key.pem
storage/app/telebirr/keys/public_key.pem

```

> **Do not commit the private key** to version control.

### 3. Publish config (optional)

[](#3-publish-config-optional)

```
php artisan vendor:publish --tag=telebirr-config
php artisan vendor:publish --tag=telebirr-keys
```

This will copy the config and keys into your Laravel project.

2 Installation
--------------

[](#2-installation)

Install via Composer:

```
composer require ttechnos/telebirr:dev-main
```

3 Usage
-------

[](#3-usage)

### Using the Facade

[](#using-the-facade)

```
use Ttechnos\Telebirr\Facades\Telebirr;

// Get Fabric token
$token = Telebirr::getFabricToken();

// Create an order
$order = Telebirr::createOrder('Test Product', 100.50, [
    'description' => 'Payment for test product',
]);
```

### Using the Service directly

[](#using-the-service-directly)

```
$telebirr = app('telebirr');

$token = $telebirr->getFabricToken();
$order = $telebirr->createOrder('Test Product', 100.50);
$isValid = $telebirr->verifySignature($data);
```

5 License
---------

[](#5-license)

MIT License.

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance49

Moderate activity, may be stable

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/4cdfd7b4ed24ac3ce14acc3a7b2b9cc0bdd060fecd3b8cc18c53c1bf480f329d?d=identicon)[titohailu](/maintainers/titohailu)

---

Top Contributors

[![titan36](https://avatars.githubusercontent.com/u/30485242?v=4)](https://github.com/titan36 "titan36 (10 commits)")

### Embed Badge

![Health badge](/badges/ttechnos-telebirr/health.svg)

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

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