PHPackages                             rushabhmishrarmz/indipay - 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. rushabhmishrarmz/indipay

ActiveLibrary[Payment Processing](/categories/payments)

rushabhmishrarmz/indipay
========================

The Laravel 10+ Package for Indian Payment Gateways. Currently supported gateways: CCAvenue, PayUMoney, EBS, CitrusPay, InstaMojo, ZapakPay, Paytm, Mocker.

v1.0.3(2y ago)2235MITPHPPHP &gt;=8.2

Since Oct 24Pushed 2y ago1 watchersCompare

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

READMEChangelogDependencies (1)Versions (5)Used By (0)

IndiPay
=======

[](#indipay)

The Laravel 10+ package for Indian Payment Gateways. Currently supported gateway: [CCAvenue](http://www.ccavenue.com/), [PayUMoney](https://www.payumoney.com/), [EBS](https://www.ebs.in), [CitrusPay](http://www.citruspay.com/) ,[ZapakPay](https://pay.mobikwik.com/) (Mobikwik), [Paytm](https://dashboard.paytm.com/), [Mocker](http://mocker.in)

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

[](#installation)

**Step 1:** Install package using composer ```
composer require rushabhmishrarmz/indipay
```

**Step 2**: Publish the config &amp; Middleware by running in your terminal

```
php artisan vendor:publish --provider="Indipay\Indipay\IndipayServiceProvider"
```

**Step 3**: Disable CSRF verification upon payment response routes.

> Just put routes in `$expect` array on `VerifyCsrfToken` middleware.

Usage
-----

[](#usage)

Edit the config/indipay.php with your related config values. You can set the default gateway to use by setting the `gateway` key in config file. Then in your code... ``

```
use Indipay\Indipay\Facades\Indipay;
```

Initiate your payment request and redirect using the default gateway:-

```
/* All Required Parameters by your Gateway will differ from gateway to gateway refer the gate manual */

$parameters = [
'transaction_no' => '784521221245',
'amount' => '1500.00',
'name' => 'Jon Doe',
'email' => 'jon@doe.com'
];

$order = Indipay::prepare($parameters);
return Indipay::process($order);
```

> Please check for the required parameters in your gateway manual. There is a basic validation in this package to check for it.

You may also use multiple gateways:-

```
// gateway = CCAvenue / PayUMoney / EBS / Citrus / InstaMojo / ZapakPay / Paytm / Mocker

$order = Indipay::gateway('CCAvenue')->prepare($parameters);
return Indipay::process($order);
```

Get the response from the Gateway specified redirect(success/cancel) url in config file:-

```
public function response(Request $request)
{
    // For default Gateway
    $response = Indipay::response($request);

    // For Otherthan Default Gateway
    $response = Indipay::gateway('NameOfGatewayUsedDuringRequest')->response($request);

    dd($response);
}
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

Every ~0 days

Total

4

Last Release

929d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/27c278247c648ed48baa89566bbb69c7ec3344a8816998f218a81273a056ca91?d=identicon)[rushabhmishrarmz](/maintainers/rushabhmishrarmz)

---

Top Contributors

[![rushabh7890](https://avatars.githubusercontent.com/u/121672921?v=4)](https://github.com/rushabh7890 "rushabh7890 (12 commits)")

---

Tags

laravel 10paytminstamojomockerccavenueebspayumoneyIndian Payment GatewaysCitrusPaymobikwik

### Embed Badge

![Health badge](/badges/rushabhmishrarmz-indipay/health.svg)

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

###  Alternatives

[softon/indipay

The Laravel 5 Package for Indian Payment Gateways. Currently supported gateways: CCAvenue, PayUMoney, EBS, CitrusPay, InstaMojo, ZapakPay, Mocker

6594.6k1](/packages/softon-indipay)[itsmurumba/laravel-mpesa

Laravel Package for Mpesa Daraja API

191.6k](/packages/itsmurumba-laravel-mpesa)

PHPackages © 2026

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