PHPackages                             laravel-pay/bank-misr - 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. laravel-pay/bank-misr

ActiveLibrary

laravel-pay/bank-misr
=====================

This is my package bank-misr

03PHP

Since Aug 25Pushed 2y agoCompare

[ Source](https://github.com/laravel-pay/bank-misr)[ Packagist](https://packagist.org/packages/laravel-pay/bank-misr)[ RSS](/packages/laravel-pay-bank-misr/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Bank Misr (EGYPT)
-----------------

[](#bank-misr-egypt)

[![Latest Version on Packagist](https://camo.githubusercontent.com/36b7d681b2848fa336e4bd9a4bb00606f26a8c44379b24b47283739c9d8b264f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d7061792f62616e6b2d6d6973722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-pay/bank-misr)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/02c2de5d1ad5a431c25281fef3014c9fb96920a86d703d94a70f03547ab1e79b/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d7061792f62616e6b2d6d6973722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-pay/bank-misr)[![Quality Score](https://camo.githubusercontent.com/fc7fd2534958e40a063b60b2a499b9aeb287f0d748726352af73e6bed4d84cac/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d7061792f62616e6b2d6d6973722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-pay/bank-misr)[![Code Coverage](https://camo.githubusercontent.com/c2a1a2ec455b96a00bdc7ffc037d99d619d8099cc03e06e9de06883ba241110a/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d7061792f62616e6b2d6d6973722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-pay/bank-misr/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/85d2d0a6b2885ae9ec3c646a87b01985f413623fc2fa328d32eac611c1c50dc0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d7061792f62616e6b2d6d6973722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-pay/bank-misr)

Bank Misr (EGYPT) driver for the Laravel Pay package.

Contents
--------

[](#contents)

- [Installation](#installation)
- [Usage](#usage)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

You can install the package via composer:

```
composer require laravel-pay/bank-misr
```

You can publish the config file with:

```
php artisan vendor:publish --tag="bank-misr-config"
```

This is the contents of the published config file:

```
return [
    "merchant" => [
        "id" => env("BANK_MISR_MERCHANT_ID"),
        "password" => env("BANK_MISR_MERCHANT_PASSWORD"),
        "name" => env("BANK_MISR_MERCHANT_NAME"),
    ],
    "currency" => "EGP",

    "success_url" => env("BANK_MISR_SUCCESS_URL"),
    "fail_url" => env("BANK_MISR_FAIL_URL"),
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="bank-misr-views"
```

Usage
-----

[](#usage)

```
Route::get("/" , function(){
    $form = BankMisr::setOrderId(11111)
        ->setSuccessUrl("success")
        ->setFailUrl("fail")
        ->setAmount(100.12)
        ->setDescription("test")
        ->getForm();

    return view("welcome" , [
        "form" => $form
    ]);
});

Route::get("/success" , function(){
    dd("success" , request()->all());
})->name("success");

Route::get("/fail" , function(){
    dd("fail" , request()->all());
})->name("fail");
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [elsayed85](https://github.com/elsayed85)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

13

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity21

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/9f6465ef2e90074d5a323bf893bb1ab9a7b5af7bf61d1001f85a8448d8fb257d?d=identicon)[elsayed851999](/maintainers/elsayed851999)

---

Top Contributors

[![elsayed85](https://avatars.githubusercontent.com/u/41492621?v=4)](https://github.com/elsayed85 "elsayed85 (20 commits)")

### Embed Badge

![Health badge](/badges/laravel-pay-bank-misr/health.svg)

```
[![Health](https://phpackages.com/badges/laravel-pay-bank-misr/health.svg)](https://phpackages.com/packages/laravel-pay-bank-misr)
```

PHPackages © 2026

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