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

ActiveLibrary[Payment Processing](/categories/payments)

dash8x/rm-laravel
=================

Laravel wrapper for Revenue Monster PHP SDK

v1.1.0(1y ago)13971MITPHPPHP ^8.0CI failing

Since Oct 9Pushed 1y ago1 watchersCompare

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

READMEChangelog (2)Dependencies (4)Versions (10)Used By (0)

Revenue Monster Laravel Wrapper
===============================

[](#revenue-monster-laravel-wrapper)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f104be89000e52e3d8b8a397371081436f84d55b3321b9cc4882069961a18d8b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6461736838782f726d2d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dash8x/rm-laravel)[![Test Status](../../actions/workflows/run-tests.yml/badge.svg)](../../actions/workflows/run-tests.yml)[![Code Coverage Badge](./.github/coverage.svg)](./.github/coverage.svg)[![Total Downloads](https://camo.githubusercontent.com/983262e074ff71c34ec593b694466738b907125c6c15385ac195ce19d160c06a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6461736838782f726d2d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dash8x/rm-laravel)

Laravel wrapper for [Revenue Monster PHP SDK](https://github.com/RevenueMonster/RM-API-SDK-PHP).

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

[](#installation)

You can install the package via composer:

```
composer require dash8x/rm-laravel
```

Optionally you can use the Facade for shorter code. Add this to your facades:

```
'RevenueMonster' => Dash8x\RevenueMonster\Facades\RevenueMonsterFacade::class;
```

### Setting up the Revenue Monster credentials

[](#setting-up-the-revenue-monster-credentials)

Add your Revenue Monster Client ID and Client Secret to your `config/services.php`. You can refer to how to create the API Client from the [Official Revenue Monster Documentation](https://doc.revenuemonster.my/docs/quickstart/signature-algorithm).

Make sure to add the private key file to gitignore if you've it in the project directory.

```
// config/services.php
...
'rm' => [
    'client_id' => env('RM_CLIENT_ID'), // Client ID
    'client_secret' => env('RM_CLIENT_SECRET'), // Client Secret
    'sandbox' => env('RM_SANDBOX', false), // Whether to use the sandbox mode
    'private_key' => base_path('/rm-private-key.pem'), // Path to the private key file
],
...
```

Usage
-----

[](#usage)

Using the App container:

```
$rm = App::make('rm');

// Get merchant profile
try {
  $response = $rm->merchant->profile();
} catch(ApiException $e) {
  echo "statusCode : {$e->getCode()}, errorCode : {$e->getErrorCode()}, errorMessage : {$e->getMessage()}";
} catch(Exception $e) {
  echo $e->getMessage();
}
```

Using the Facade

```
// Get merchant profile
try {
  $response = RevenueMonster::merchant()->profile();
} catch(ApiException $e) {
  echo "statusCode : {$e->getCode()}, errorCode : {$e->getErrorCode()}, errorMessage : {$e->getMessage()}";
} catch(Exception $e) {
  echo $e->getMessage();
}
```

### Available Methods

[](#available-methods)

Refer to the readme for the [Official PHP SDK](https://github.com/RevenueMonster/RM-API-SDK-PHP).

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

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

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

[](#contributing)

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

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Arushad Ahmed (@dash8x)](https://github.com/dash8x)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance41

Moderate activity, may be stable

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity65

Established project with proven stability

 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

Every ~184 days

Recently: every ~367 days

Total

9

Last Release

573d ago

Major Versions

v0.7.0 → v1.0.02024-10-09

PHP version history (3 changes)v0.1.0PHP ^7.1

v0.7.0PHP ^7.1|^8.0

v1.0.0PHP ^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6671720?v=4)[Arushad Ahmed](/maintainers/dash8x)[@dash8x](https://github.com/dash8x)

---

Top Contributors

[![dash8x](https://avatars.githubusercontent.com/u/6671720?v=4)](https://github.com/dash8x "dash8x (27 commits)")

---

Tags

paymentsrmMalaysiadash8xrm-laravelrevenue monster

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[unicodeveloper/laravel-paystack

A Laravel Package for Paystack

650975.6k11](/packages/unicodeveloper-laravel-paystack)[ignited/laravel-omnipay

Integrates Omnipay with Laravel and provides an easy configuration.

5211.1M12](/packages/ignited-laravel-omnipay)[kingflamez/laravelrave

A Laravel Package for Flutterwave Rave

151286.1k4](/packages/kingflamez-laravelrave)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)[knox/pesapal

A laravel package that integrates into the pesapal api

29106.3k](/packages/knox-pesapal)[cviebrock/laravel-mangopay

Laravel/Lumen wrapper for the office Mangopay SDK library

1971.8k](/packages/cviebrock-laravel-mangopay)

PHPackages © 2026

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