laravel-payhere/laravel-payhere

There is no license information available for the latest version (v3.0.1) of this package.

A Laravel plugin for PayHere payment gateway.

v3.0.1 2025-07-04 10:33 UTC

README

PayHere

Build Status Total Downloads Latest Stable Version License

Introduction

Easily and securely integrate PayHere into your Laravel application.

// A super simple example to show how easy it is to integrate PayHere!

use PayHere\PayHere;

class CheckoutController extends Controller
{
    public function __invoke()
    {
        return PayHere::builder()
            ->title('iPhone 16 Pro')
            ->amount(329900)
            ->checkout();
    }
}

Official Documentation

You can find the documentation here.

Changelog

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

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

The Laravel PayHere is open-sourced software licensed under the MIT license.