A PHP class wrapper for Punctis API
The recommended way to get a working copy of this project is to clone the repository from github:
cd my/project/dir
git clone https://github.com/Populissrl/punctis-api-php.git
cd my/project/dir/punctis-api-php
composer.phar install
include_once(dirname(__FILE__) . '/vendor/autoload.php');
$options = array(
//'demoMode' => true,
'authMode' => 'safe',
'authKey' => '0niLCwOdQYhrPcFkbUgA9S7eW',
'brandCode' => '0JBR39VmzwGF'
);
$p = new \Populis\Punctis\Api($options);
$catalog = $p->getCatalog();
