This package provides a PHP interface to the Simply.com REST API.
We recommend installing this package with Composer.
To download Composer, run in the root directory of your project:
curl -sS https://getcomposer.org/installer | phpYou should now have the file composer.phar in your project directory.
Run in your project root:
php composer.phar require unoeuro/api-php
After installing the dependencies, you need to require the Composer autoloader from your code:
require 'vendor/autoload.php';require 'vendor/autoload.php';
$unoeuro = new UnoEuro\Client('account', 'apikey');
$products = $unoeuro->get('my/products/');
var_dump($products);Please submit pull requests, we love you <3