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

ActiveLibrary

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

Laravel package for Dinger Prebuilt Form payment integration

v1.0.8(1y ago)046↓100%PHPPHP ^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 1mo 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

28

—

LowBetter than 54% of packages

Maintenance43

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

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

447d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/68decbff5127a14c01e57893a847759f5d4b1f9b519dcdf7cce254dc4445ac8c?d=identicon)[myomyintaung512](/maintainers/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

[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[stechstudio/laravel-zipstream

A fast and simple streaming zip file downloader for Laravel.

4633.7M3](/packages/stechstudio-laravel-zipstream)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[spatie/laravel-export

Create a static site bundle from a Laravel app

646127.9k5](/packages/spatie-laravel-export)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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