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
Requires
- php: >=7.1
- guzzlehttp/guzzle: ^7.0.1
Requires (Dev)
- phpunit/phpunit: 6.*
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);