arjennz/montapacking

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

Installs: 5 886

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 2

Open Issues: 2

Type:project

dev-master 2021-12-16 18:47 UTC

This package is auto-updated.

Last update: 2025-05-20 01:29:36 UTC


README

A simple PHP wrapper for the montapacking API.

Installation

This project can easily be installed through Composer.

composer require arjennz/montapacking

Example: Get product

<?php

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

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

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

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