PHPackages                             simplypaye/laravel - 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. simplypaye/laravel

ActiveLibrary[Payment Processing](/categories/payments)

simplypaye/laravel
==================

SimplyPaye Mobile Money SDK for Laravel — Orange Money, Airtel Money, M-Pesa (DRC). API: https://api-simply-pay.net

v1.0.0(1mo ago)00MITPHPPHP ^8.1

Since May 29Pushed 1mo agoCompare

[ Source](https://github.com/Elmightypower/simplypaye-laravel)[ Packagist](https://packagist.org/packages/simplypaye/laravel)[ Docs](https://www.simply-paye.com)[ RSS](/packages/simplypaye-laravel/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (2)Versions (2)Used By (0)

simplypaye/laravel
==================

[](#simplypayelaravel)

Package Composer pour intégrer SimplyPaye dans une application Laravel.

**Portail marchand :** [marchand-simplypaye.store](https://www.marchand-simplypaye.store)

Installation (projet Laravel)
-----------------------------

[](#installation-projet-laravel)

### Depuis ce dépôt (path)

[](#depuis-ce-dépôt-path)

Dans le `composer.json` de votre app Laravel :

```
{
  "repositories": [
    {
      "type": "path",
      "url": "../apiserver/integrations/laravel/simplypaye-laravel"
    }
  ],
  "require": {
    "simplypaye/laravel": "@dev"
  }
}
```

```
composer require simplypaye/laravel:@dev
php artisan vendor:publish --tag=simplypaye-config
```

### Packagist

[](#packagist)

```
composer require simplypaye/laravel
```

Repository : [github.com/Elmightypower/simplypaye-laravel](https://github.com/Elmightypower/simplypaye-laravel)

Configuration `.env`
--------------------

[](#configuration-env)

```
SIMPLYPAYE_MERCHANT_CODE=108953
SIMPLYPAYE_API_KEY=
SIMPLYPAYE_API_BASE=https://api-simply-pay.net
SIMPLYPAYE_MODE=production
# SIMPLYPAYE_MODE=sandbox
```

Usage
-----

[](#usage)

```
use SimplyPaye\Laravel\Facades\SimplyPaye;

$result = SimplyPaye::initiateMobilePayment([
    'phone' => '243812345678',
    'amount' => '100',
    'currency' => 'CDF',
    'reference' => 'INV-'.now()->timestamp,
    'callbackUrl' => route('simplypaye.callback'),
]);

$orderNumber = $result['orderNumber'];

// Plus tard
$status = SimplyPaye::checkPaymentStatus($orderNumber);
if (SimplyPaye::isPaymentSuccess($status)) {
    // marquer commande payée
}
```

Injection :

```
public function __construct(private SimplyPayeClient $simplyPaye) {}
```

Sandbox
-------

[](#sandbox)

```
// .env SIMPLYPAYE_MODE=sandbox
SimplyPaye::setSimulationStatus($orderNumber, 'success');
```

Exemple complet (controller + routes)
-------------------------------------

[](#exemple-complet-controller--routes)

Voir [`../examples/README.md`](../examples/README.md).

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance89

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

56d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0f35556d84a812d463b039daa2dd0cc8e2a30d29bd1eaec7e100274792a3ffa8?d=identicon)[elgmightypower](/maintainers/elgmightypower)

---

Top Contributors

[![Elmightypower](https://avatars.githubusercontent.com/u/79012267?v=4)](https://github.com/Elmightypower "Elmightypower (1 commits)")

---

Tags

laravelpaymentmpesamobile-moneyflexpayOrange Moneyairtel-moneydrcsimplypayesimply-paye

### Embed Badge

![Health badge](/badges/simplypaye-laravel/health.svg)

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.3M347](/packages/psalm-plugin-laravel)[api-platform/laravel

API Platform support for Laravel

58174.6k17](/packages/api-platform-laravel)

PHPackages © 2026

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