PHPackages                             alaikis/dimebia-php - 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. [API Development](/categories/api)
4. /
5. alaikis/dimebia-php

ActiveLibrary[API Development](/categories/api)

alaikis/dimebia-php
===================

Fourth party settlement platform for enterprises

v1.0.1(1y ago)08MITPHPPHP &gt;=7.4CI passing

Since Apr 10Pushed 1y ago1 watchersCompare

[ Source](https://github.com/alaikis/dimebia-php-api)[ Packagist](https://packagist.org/packages/alaikis/dimebia-php)[ RSS](/packages/alaikis-dimebia-php/feed)WikiDiscussions main Synced today

READMEChangelog (1)DependenciesVersions (3)Used By (0)

Dimebia API client for PHP
==========================

[](#dimebia-api-client-for-php)

1,install the package via composer

```
composer require alaikis/dimebia-php
```

2,you can use this client to create a payment as simple with a few lines of code

```
$key = "";
$secret = "";
$client = new Dimebia($key, $secret);
$payment = $client->paymentApply([
    "amount" => [
        "value" => 100,
        "currency" => "EUR",
    ],
    'channel_id' => 1000,
    "description"' => "make a payment by api",
])
```

create a payment
----------------

[](#create-a-payment)

3, Of course,you can also generate a payment with full information about the order,which is useful for e-commerce, then you can track the transform with the information easy.

```
$key = "";
$secret = "";
$client = new Dimebia($key, $secret);
$payment = $client->paymentApply([
    "amount" => [
        "value" => 100,
        "currency" => "EUR",
    ],
    "billing_address" => [
        "streetAndNumber" => "Keizersgracht 313",
        "postalCode" => "1016 EE",
        "city" => "Amsterdam",
        "country" => "nl",
        "givenName" => "Luke",
        "familyName" => "Skywalker",
        "email" => "luke@skywalker.com",
    ],
    "shipping_address" => [
        "streetAndNumber" => "Keizersgracht 313",
        "postalCode" => "1016 EE",
        "city" => "Amsterdam",
        "country" => "nl",
        "givenName" => "Luke",
        "familyName" => "Skywalker",
        "email" => "luke@skywalker.com",
    ],
    "locale" => "en_US",
    "orderNumber" => "1234",
    'channel_id' => 1000,
    "description"' => "make a payment by api",
    "redirect_url" => "https://example.com/payment-success",
    "cancel_url" => "https://example.com/payment-failed",
    "webhookUrl" => "https://example.com/webhook",
    "lines" => [
        [
            "sku" => "5702016116977",
            "name" => "LEGO 42083 Bugatti Chiron",
            "productUrl" => "https://shop.lego.com/nl-NL/Bugatti-Chiron-42083",
            "imageUrl" => 'https://sh-s7-live-s.legocdn.com/is/image//LEGO/42083_alt1?$main$',
            "quantity" => 2,
            "vatRate" => "21.00",
            "unitPrice" => [
                "currency" => "EUR",
                "value" => "399.00",
            ],
            "totalAmount" => [
                "currency" => "EUR",
                "value" => "698.00",
            ],
            "discountAmount" => [
                "currency" => "EUR",
                "value" => "100.00",
            ],
            "vatAmount" => [
                "currency" => "EUR",
                "value" => "121.14",
            ],
        ],
        // more order line items
    ],
])
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance44

Moderate activity, may be stable

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

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

Total

2

Last Release

450d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/30462479?v=4)[Alex Lai](/maintainers/alaikis)[@alaikis](https://github.com/alaikis)

---

Top Contributors

[![alaikis](https://avatars.githubusercontent.com/u/30462479?v=4)](https://github.com/alaikis "alaikis (26 commits)")

### Embed Badge

![Health badge](/badges/alaikis-dimebia-php/health.svg)

```
[![Health](https://phpackages.com/badges/alaikis-dimebia-php/health.svg)](https://phpackages.com/packages/alaikis-dimebia-php)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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