Giter VIP home page Giter VIP logo

ccavenue's Introduction

This project is specially written for those Laravel users who are having trouble with CCAvenue integration.

CCAvenue Payment Gateway integration for Laravel 5.x (Supports PHP 7.3)

Latest Version on Packagist Software License Total Downloads

This package is built to integrate CCAvenue payment gateway into your laravel project, It is developed keeping in mind other payment gateways also but is limited to ccavenue for at the time of release.

Important

The code is originially a fork of similar package by softon/indipay. But this package uses the latest SDK released by CCAvenue for php 7.1 Since their old SDK didn't support that version.

Installation

Step 1: Install package using composer

$ composer require cart53/ccavenue

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

 Cart53\Payment\PaymentServiceProvider::class,

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

 'Payment' => Cart53\Payment\Facades\Payment::class

Step 4: Publish the Config, Middleware & Views by running in your terminal

  php artisan vendor:publish

This above step creates

  • config/payment.php
  • app/Http/Middlewares/VerifyCsrfToken.php
  • resources/views/vendor/payment/ccavenue.blade.php

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/payment.php to disable CSRF on your gateways response routes.

   'App\Http\Middleware\VerifyCsrfToken',

to

   'App\Http\Middleware\VerifyCsrfMiddleware',

Usage

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

    use Cart53\Payment\Facades\Payment;

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 = Payment::prepare($parameters);
      return Payment::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 / others

      $order = Payment::gateway('NameOfGateway')->prepare($parameters);
      return Payment::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 = Payment::response($request);
        // For Otherthan Default Gateway
        $response = Payment::gateway('NameOfGatewayUsedDuringRequest')->response($request);
        dd($response);
    }  

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details.

Security

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

Credits

License

The MIT License (MIT). Please see License File for more information.

ccavenue's People

Contributors

cart53 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.