PHPackages                             rajagonda/gondapay - 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. rajagonda/gondapay

ActiveLibrary[Payment Processing](/categories/payments)

rajagonda/gondapay
==================

v1.4(7y ago)05MITPHPPHP &gt;=5.6.0

Since Mar 16Pushed 7y ago1 watchersCompare

[ Source](https://github.com/rajagonda/gondapay)[ Packagist](https://packagist.org/packages/rajagonda/gondapay)[ RSS](/packages/rajagonda-gondapay/feed)WikiDiscussions master Synced yesterday

READMEChangelog (5)Dependencies (2)Versions (5)Used By (0)

Gondapay
========

[](#gondapay)

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/) ,[ZapakPay](https://pay.mobikwik.com/) (Mobikwik), [Mocker](http://mocker.in)

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

[](#installation)

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

    composer require rajagonda/gondapay

```

**Step 2:** Add the service provider to the config/app.php file in Laravel (Optional for Laravel 5.5)

```

    Rajagonda\Gondapay\GondapayServiceProvider::class,

```

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

```

    'Gondapay' => Rajagonda\Gondapay\Facades\Gondapay::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/gondapay.php to disable CSRF on your gateways response routes.**

```

    App\Http\Middleware\VerifyCsrfToken::class,

```

to

```

    App\Http\Middleware\VerifyCsrfMiddleware::class,

```

Usage
-----

[](#usage)

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

```
 use Rajagonda\Gondapay\Facades\Gondapay;
```

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 = Gondapay::prepare($parameters);
      return Gondapay::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 / ZapakPay / Mocker

      $order = Gondapay::gateway('NameOfGateway')->prepare($parameters);
      return Gondapay::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 = Gondapay::response($request);

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

        dd($response);

    }

```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 80% 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

5

Last Release

2614d ago

PHP version history (2 changes)v1.0PHP &gt;=7.0

v1.4PHP &gt;=5.6.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/ac41f5d99ed251ebfa457ffcfbee13be9d7f0a726214589ce3ef9da803ae082e?d=identicon)[rajagonda](/maintainers/rajagonda)

---

Top Contributors

[![mirrorwebs](https://avatars.githubusercontent.com/u/1317534?v=4)](https://github.com/mirrorwebs "mirrorwebs (4 commits)")[![rajagondan](https://avatars.githubusercontent.com/u/214053979?v=4)](https://github.com/rajagondan "rajagondan (1 commits)")

---

Tags

laravel 5instamojomockerccavenueebspayumoneyIndian Payment GatewaysCitrusPay

### Embed Badge

![Health badge](/badges/rajagonda-gondapay/health.svg)

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

###  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)
