Skip to content

A simple PHP wrapper for the Montapacking API

License

Notifications You must be signed in to change notification settings

Dashed-DEV/montapacking

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Montapacking PHP API Wrapper

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

About

A simple PHP wrapper for the Montapacking API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%