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

ActiveLibrary[Payment Processing](/categories/payments)

dbhosale/indipay
================

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

v1.1.2(8y ago)11271MITPHPPHP &gt;=5.4.0

Since Aug 9Pushed 8y ago1 watchersCompare

[ Source](https://github.com/dbhosale/indipay)[ Packagist](https://packagist.org/packages/dbhosale/indipay)[ RSS](/packages/dbhosale-indipay/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)Dependencies (2)Versions (19)Used By (0)

IndiPay
=======

[](#indipay)

The Laravel 5 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/)

[For Laravel 4.2 Package Click Here](https://github.com/softon/indipay/tree/laravel4)

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

[](#installation)

**Step 1:** Install package using composer ```

    composer require dbhosale/indipay

```

**Step 2:** Add the service provider to the config/app.php file in Laravel

```

    Softon\Indipay\IndipayServiceProvider::class,

```

**Step 3:** Add an alias for the Facade to the config/app.php file in Laravel

```

    'Indipay' => Softon\Indipay\Facades\Indipay::class,

```

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

```

    php artisan vendor:publish

```

**Step 5:** Modify the app\\Http\\Kernel.php to use the new Middleware. This is required so as to avoid CSRF verification on the Response Url from the payment gateways. **You may adjust the routes in the config file config/indipay.php to disable CSRF on your gateways response routes.**

```

    'App\Http\Middleware\VerifyCsrfToken',

```

to

```

    'App\Http\Middleware\VerifyCsrfMiddleware',

```

Usage
-----

[](#usage)

Edit the config/indipay.php. Set the appropriate Gateway and its parameters. Then in your code...

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

Initiate Purchase Request and Redirect using the default gateway:-

```
      /* All Required Parameters by your Gateway */

      $parameters = [

        'tid' => '1233221223322',

        'order_id' => '1232212',

        'amount' => '1200.00',

      ];

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

Initiate Purchase Request and Redirect using any of the configured gateway:-

```
      /* All Required Parameters by your Gateway */

      $parameters = [

        'tid' => '1233221223322',

        'order_id' => '1232212',

        'amount' => '1200.00',

      ];

      // gateway = CCAvenue / PayUMoney / EBS / Citrus / InstaMojo

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

Get the Response from the Gateway (Add the Code to the Redirect Url Set in the config file. Also add the response route to the remove\_csrf\_check config item to remove CSRF check on these routes.):-

```

    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

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 74.1% 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 ~47 days

Recently: every ~38 days

Total

17

Last Release

3168d ago

Major Versions

v0.1.1 → v1.0.72016-04-06

PHP version history (2 changes)v1.0.1PHP &gt;=5.4.0

v0.1.0PHP &gt;=5.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/9811172ed1082bdb01000366c1429a53898511461483de62375526fa3616d99d?d=identicon)[dbhosale](/maintainers/dbhosale)

---

Top Contributors

[![softon](https://avatars.githubusercontent.com/u/598761?v=4)](https://github.com/softon "softon (20 commits)")[![dbhosale](https://avatars.githubusercontent.com/u/3271623?v=4)](https://github.com/dbhosale "dbhosale (6 commits)")[![secrethash](https://avatars.githubusercontent.com/u/11258035?v=4)](https://github.com/secrethash "secrethash (1 commits)")

---

Tags

laravel 5instamojoccavenueebspayumoneyIndian Payment GatewaysCitrusPay

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/dbhosale-indipay/health.svg)](https://phpackages.com/packages/dbhosale-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)[sebdesign/laravel-viva-payments

A Laravel package for integrating the Viva Payments gateway

4845.9k](/packages/sebdesign-laravel-viva-payments)[karson/mpesa-php-sdk

172.2k](/packages/karson-mpesa-php-sdk)[itsmurumba/laravel-mpesa

Laravel Package for Mpesa Daraja API

191.6k](/packages/itsmurumba-laravel-mpesa)[henryejemuta/laravel-monnify

A laravel package to seamlessly integrate monnify api within your laravel application

132.1k](/packages/henryejemuta-laravel-monnify)

PHPackages © 2026

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