qubiqx/montapacking

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

Installs: 83

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 3

Type:project

dev-master 2021-10-25 15:42 UTC

This package is auto-updated.

Last update: 2024-06-07 10:32:01 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