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

ActiveLibrary

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

Client library for backend Ixoplan APIs

v1.0.3(5y ago)211MITPHPCI failing

Since Jan 31Pushed 4y ago8 watchersCompare

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

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 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community15

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

1838d ago

### Community

Maintainers

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

---

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/ixoplan-ixoplan-backend-sdk/health.svg)

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

PHPackages © 2026

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