PHPackages                             myomyintaung512/laravel-dinger-prebuilt - 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. myomyintaung512/laravel-dinger-prebuilt

ActiveLibrary[Payment Processing](/categories/payments)

myomyintaung512/laravel-dinger-prebuilt
=======================================

Laravel package for Dinger Prebuilt Form payment integration

v1.0.8(1y ago)068PHPPHP ^7.3|^8.0

Since Feb 11Pushed 1y ago1 watchersCompare

[ Source](https://github.com/myomyintaung512/laravel-dinger-prebuilt)[ Packagist](https://packagist.org/packages/myomyintaung512/laravel-dinger-prebuilt)[ RSS](/packages/myomyintaung512-laravel-dinger-prebuilt/feed)WikiDiscussions main Synced 3d ago

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

Laravel Dinger
==============

[](#laravel-dinger)

A Laravel package for integrating [Dinger](https://dinger.asia) payment gateway into your Laravel applications.

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

[](#installation)

You can install the package via composer:

```
composer require myomyintaung512/laravel-dinger-prebuilt
```

Configuration
-------------

[](#configuration)

First publish the configuration file:

```
php artisan vendor:publish --provider="myomyintaung512\LaravelDingerPrebuilt\DingerServiceProvider"
```

Add the following configuration to your .env file:

```
DINGER_CLIENT_ID=your_client_id
DINGER_MERCHANT_KEY=your_merchant_key
DINGER_PUBLIC_KEY=your_public_key
DINGER_PROJECT_NAME=your_project_name
DINGER_MERCHANT_NAME=your_merchant_name
DINGER_HASH_KEY=your_hash_key
DINGER_BASE_URL=https://prebuilt.dinger.asia
```

Basic Usage
-----------

[](#basic-usage)

You can use the Dinger instance in two ways:

### Using Dependency Injection

[](#using-dependency-injection)

```
use myomyintaung512\LaravelDingerPrebuiltForm\DingerPrebuilt;

class PaymentController extends Controller
{
    public function checkout(DingerPrebuilt $dinger)
    {
        $items = [
            [
                'name' => 'Product 1',
                'amount' => 1000,
                'quantity' => 1
            ]
        ];

        $paymentUrl = $dinger->createPayment(
            $items,
            'Customer Name',
            1000,
            'ORDER_123'
        );

        return redirect($paymentUrl);
    }
}
```

```
use myomyintaung512\LaravelDinger\Dinger;

$dinger = new Dinger([
    'api_key' => env('DINGER_API_KEY'),
    'merchant_name' => env('DINGER_MERCHANT_NAME'),
    'merchant_id' => env('DINGER_MERCHANT_ID'),
    'production' => env('DINGER_PRODUCTION', false),
]);

$payment = $dinger->createPayment([
    'amount' => 1000,
    'order_id' => 'ORDER_123',
    'description' => 'Product purchase',
    'customer_name' => 'Mg Mg',
    'customer_phone' => '09123456789',
    'customer_email' => 'mgmg@example.com',
    'redirect_url' => 'https://your-website.com/payment/callback'
]);
```

Environment
-----------

[](#environment)

- Production URL:
- Staging URL:

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 40% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

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 ~8 days

Total

2

Last Release

538d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2306452?v=4)[Myo Myint Aung](/maintainers/myomyintaung512)[@myomyintaung512](https://github.com/myomyintaung512)

---

Top Contributors

[![myomyintaung512](https://avatars.githubusercontent.com/u/2306452?v=4)](https://github.com/myomyintaung512 "myomyintaung512 (10 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/myomyintaung512-laravel-dinger-prebuilt/health.svg)

```
[![Health](https://phpackages.com/badges/myomyintaung512-laravel-dinger-prebuilt/health.svg)](https://phpackages.com/packages/myomyintaung512-laravel-dinger-prebuilt)
```

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.7M3.4k](/packages/craftcms-cms)[illuminate/http

The Illuminate Http package.

11938.5M8.1k](/packages/illuminate-http)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

353.6k](/packages/eslazarev-wildberries-sdk)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5226.7k](/packages/simplestats-io-laravel-client)[sebdesign/laravel-viva-payments

A Laravel package for integrating the Viva Payments gateway

4952.7k](/packages/sebdesign-laravel-viva-payments)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1239.7k25](/packages/fleetbase-core-api)

PHPackages © 2026

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