qubiqx/montapacking

Montapacking API client library for PHP. Montapacking is an ecommerce fullfillment specialist based in the Netherlands.

Installs: 113

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 2

Type:project

v2.0.0 2025-07-22 09:26 UTC

This package is auto-updated.

Last update: 2025-07-22 11:00:05 UTC


README

A simple PHP wrapper for the montapacking API.

Installation

This project can easily be installed through Composer.

composer require qubiqx/montapacking

Example: Get product

<?php

require __DIR__ . '/vendor/autoload.php';

$username = '-montapacking-username-';
$password = '-montapacking-password-';

$apiclient = new Qubiqx\Montapacking\Client($username, $password);

$product = $apiclient->getProduct('-sku-');
var_dump($product);

Forked from arjennz