PHPackages                             ixolit/dislo-backend-sdk - 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. ixolit/dislo-backend-sdk

Abandoned → [ixoplan/ixoplan-backend-sdk](/?search=ixoplan%2Fixoplan-backend-sdk)Library[API Development](/categories/api)

ixolit/dislo-backend-sdk
========================

Client library for backend Ixoplan APIs

v1.0.3(5y ago)231MITPHPCI failing

Since Jan 31Pushed 4y ago8 watchersCompare

[ Source](https://github.com/ixoplan/ixoplan-backend-sdk)[ Packagist](https://packagist.org/packages/ixolit/dislo-backend-sdk)[ RSS](/packages/ixolit-dislo-backend-sdk/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (6)Versions (5)Used By (0)

ixoplan-backend-sdk
===================

[](#ixoplan-backend-sdk)

PHP SDK for the Ixoplan Backend API

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

[](#installation)

Simply add ixoplan/ixoplan-backend-sdk and a provider of ixoplan/ixoplan-sdk-http (e.g. ixoplan/ixoplan-sdk-http-guzzle) to your composer.json, e.g:

```
{
    "name": "myvendor/myproject",
    "description": "Using ixoplan-backend-sdk",
    "require": {
        "ixoplan/ixoplan-backend-sdk": "*"
        "ixoplan/ixoplan-sdk-http-guzzle": "*"
    }
}

```

Usage
-----

[](#usage)

### Instantiate the Client

[](#instantiate-the-client)

The client is designed for different transport layers. It needs a RequestClient interface (e.g. HTTPRequestClient) to actually communicate with Ixoplan.

```
use Ixolit\Dislo\Backend\Client;
use Ixolit\Dislo\HTTP\Guzzle\GuzzleHTTPClientAdapter;
use Ixolit\Dislo\Request\HTTPRequestClient;

$httpAdapter = new GuzzleHTTPClientAdapter();

$httpClient = new HTTPRequestClient(
    $httpAdapter,
    $host,
    $apiKey,
    $apiSecret
);

$apiClient = new Client($httpClient);

```

### Coupons

[](#coupons)

Retrieve a list of all coupons in multiple requests, each limited to ten items:

```
$apiClient = new \Ixolit\Dislo\Backend\Client($httpClient);

$limit = 10;
$offset = 0;
do {
    $couponListResponse = $apiClient->couponList($limit, $offset);
    foreach ($couponListResponse->getCoupons() as $coupon) {
        echo $coupon->getCode();
        $offset++;
    }
} while ($offset < $couponListResponse->getTotalCount());

```

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Total

4

Last Release

1887d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/46bbd588ed5a4fe4e764216167901bd3090692166b21872f0dc0a3bd757342bc?d=identicon)[friegler](/maintainers/friegler)

![](https://www.gravatar.com/avatar/3e990b63b84129f344577a22493ddff3b8c07fc829d83475c94d8c3267ca044e?d=identicon)[marcod85](/maintainers/marcod85)

---

Top Contributors

[![frieglerixo](https://avatars.githubusercontent.com/u/14271959?v=4)](https://github.com/frieglerixo "frieglerixo (2 commits)")[![mmarchewa](https://avatars.githubusercontent.com/u/24267522?v=4)](https://github.com/mmarchewa "mmarchewa (2 commits)")[![Olliferdl](https://avatars.githubusercontent.com/u/7724774?v=4)](https://github.com/Olliferdl "Olliferdl (1 commits)")[![pixelsbysarah](https://avatars.githubusercontent.com/u/397664?v=4)](https://github.com/pixelsbysarah "pixelsbysarah (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/ixolit-dislo-backend-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/ixolit-dislo-backend-sdk/health.svg)](https://phpackages.com/packages/ixolit-dislo-backend-sdk)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

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

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

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

PHPackages © 2026

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