qubiqx / montapacking
Montapacking API client library for PHP. Montapacking is an ecommerce fullfillment specialist based in the Netherlands.
dev-master
2021-10-25 15:42 UTC
Requires
- php: >=8.0
- guzzlehttp/guzzle: ^7.0.1
Requires (Dev)
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-11-07 11:21:08 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