PHPackages                             soneritics/beslistshopitem - 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. soneritics/beslistshopitem

ActiveLibrary[API Development](/categories/api)

soneritics/beslistshopitem
==========================

Beslist.nl ShopItem implementation for PHP

09PHP

Since Nov 24Pushed 10y ago1 watchersCompare

[ Source](https://github.com/Soneritics/BeslistShopItem)[ Packagist](https://packagist.org/packages/soneritics/beslistshopitem)[ RSS](/packages/soneritics-beslistshopitem/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

\[ON HOLD\] Beslist.nl ShopItem API
===================================

[](#on-hold-beslistnl-shopitem-api)

[![Build Status](https://camo.githubusercontent.com/1c2f201f371eb23c5c03e0d47e601e4a4c916b0d602497aa1b55bf618f29bf94/68747470733a2f2f6170692e7472617669732d63692e6f72672f536f6e657269746963732f4265736c69737453686f704974656d2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Soneritics/BeslistShopItem)[![Coverage Status](https://camo.githubusercontent.com/5c900b58a8397b2786b8e2f07903e577095ebfff8eaa94343599380d02a0b3f9/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f536f6e657269746963732f4265736c69737453686f704974656d2f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/r/Soneritics/BeslistShopItem?branch=master)[![License](https://camo.githubusercontent.com/505fe3a551fc6e64816f64cee81471b04e7ef943170e4f994c249982b3fd4290/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e2e737667)](https://camo.githubusercontent.com/505fe3a551fc6e64816f64cee81471b04e7ef943170e4f994c249982b3fd4290/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e2e737667)

- [@Soneritics](https://github.com/Soneritics) - Jordi Jolink

Introduction
------------

[](#introduction)

The Beslist.nl platform imports webshop inventory items using feeds. The process of feed creation, downloading and processing all items in a feed is by nature not real-time. Therefore an API has been developed enabling near real-time updates to a number of properties of inventory items. Within the context of this API those webshop inventory items are referred to as ‘shopitems’ and the API is called the ‘Shopitem API’.

Minimum Requirements
--------------------

[](#minimum-requirements)

- PHP 5.6
- PHP compiled with cURL

### Example

[](#example)

```
# Initialisation
$restConfig = new RESTConfig('your-api-key-here');
$shopItem = new ShopItem($restConfig);

# Fetching Shops
$shops = $shopItem->getShops();
print_r($shops); // array of Shop objects

# Looping shops and fetching items
$items = ['1234', '1235', '1236'];
foreach ($shops as $shop) {
  $items = $shopItem->getItems($items);
  print_r($items); // array of Item objects
}

# Updating an item
$item = $shopItem->getItem($shop, '1234');
if ($item->isValid()) {
  $item
    ->setPrice(24.95)
    ->setDiscountPrice(19.99)
    ->setDeliveryCostNl(0)
    ->setDeliveryCostBe(1.95);

  $saved = $item->save();
  var_dump($saved); // True or false
}
```

Class Diagram
-------------

[](#class-diagram)

[![Class Diagram](ClassDiagram.png)](ClassDiagram.png)

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3717850?v=4)[Jordi Jolink](/maintainers/soneritics)[@Soneritics](https://github.com/Soneritics)

---

Top Contributors

[![Soneritics](https://avatars.githubusercontent.com/u/3717850?v=4)](https://github.com/Soneritics "Soneritics (21 commits)")

### Embed Badge

![Health badge](/badges/soneritics-beslistshopitem/health.svg)

```
[![Health](https://phpackages.com/badges/soneritics-beslistshopitem/health.svg)](https://phpackages.com/packages/soneritics-beslistshopitem)
```

###  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)
