Sellix PHP SDK
Introduction
Sellix public API for developers to access merchant resources
Requirements
- php ^5.3
- php-curl
Installation
Install the package through composer.
composer require sellix/php-sdk
Usage
require_once 'vendor/autoload.php';
use \Sellix\PhpSdk\Sellix;
use \Sellix\PhpSdk\SellixException;
$client = new Sellix("
"
);
try {
$products = $client->get_products();
} catch (SellixException $e) {
echo $e->__toString();
}
?>