PHPackages                             mojoblanco/rits - 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. mojoblanco/rits

ActiveLibrary

mojoblanco/rits
===============

1.5(5y ago)337MITPHP

Since Nov 4Pushed 5y ago2 watchersCompare

[ Source](https://github.com/mojoblanco/rits)[ Packagist](https://packagist.org/packages/mojoblanco/rits)[ RSS](/packages/mojoblanco-rits/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (6)Dependencies (1)Versions (7)Used By (0)

RITS
====

[](#rits)

A Laravel Package for Remita Interbank Transfer Service

Prerequisites
-------------

[](#prerequisites)

- Register as a merchant/biller on the Remita platform.
- Get your credentials from Remita such as Merchant ID, API Key etc.

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

[](#installation)

Open your terminal or command prompt, go to the root directory of your Laravel project, then run the following command

```
composer require mojoblanco/rits

```

Usage
-----

[](#usage)

### Setup Credentials

[](#setup-credentials)

To use any of the available services, you need to set up your credentials first

```
use Mojoblanco\RITS\Models\Credential;

$credentials = Credential();
$credentials->merchantId = $merchantId;
$credentials->apiKey = $apiKey;
$credentials->apiToken = $apiToken;
$credentials->key = $key;
$credentials->iv = $iv;
$credentials->environment = 'DEMO'; //Can either be LIVE or DEMO
```

### Available Services

[](#available-services)

#### Bulk Payment

[](#bulk-payment)

```
use Mojoblanco\RITS\RITSService;
use Mojoblanco\RITS\Models\BulkBeneficiary;

// Build the list of your beneficiaries
$beneficiaries = [];

for ($i = 0; $i < 10; $i++) {
    $bb = new BulkBeneficiary($iv, $key);
    $bb->amount = 100;
    $bb->accountNumber = '0582915208015';
    $bb->bankCode = '058';
    $bb->email = 'test@mail.com';
    $bb->narration = 'Test payment';
    $bb->transRef = rand(); // Make sure it is something you can track.

    array_push($beneficiaries, $bb);
}

// Call the bulk payment service
$bp = new BulkPayment($iv, $key);
$bp->batchRef = '12345678987654321';
$bp->debitAccount = '1234565678'
$bp->bankCode = '044'
$bp->narration = 'Test bulk payment'
$bp->beneficiaries = $beneficiaries;

$service = new RITSService($credentials);
$response = $service->makeBulkPayment($bp);
```

#### Bulk Payment Status

[](#bulk-payment-status)

```
use Mojoblanco\RITS\RITSService;
use Mojoblanco\RITS\Models\PaymentStatus;

$ps = new PaymentStatus($iv, $key);
$ps->reference = $reference;

$service = new RITSService($credentials);
$response = $service->getBulkPaymentStatus($ps);
```

### How can you thank me?

[](#how-can-you-thank-me)

You can like this repo, follow me on [github](https://github.com/mojoblanco) and [twitter](https://twitter.com/themojoblanco)

Thanks. 🙂

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

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 ~53 days

Recently: every ~67 days

Total

6

Last Release

2110d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4370375?v=4)[John Olawale](/maintainers/mojoblanco)[@mojoblanco](https://github.com/mojoblanco)

---

Top Contributors

[![mojoblanco](https://avatars.githubusercontent.com/u/4370375?v=4)](https://github.com/mojoblanco "mojoblanco (17 commits)")

### Embed Badge

![Health badge](/badges/mojoblanco-rits/health.svg)

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

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k20](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[ralphjsmit/laravel-helpers

A package containing handy helpers for your Laravel-application.

13704.6k2](/packages/ralphjsmit-laravel-helpers)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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