wienkit/bol-plaza-php-client

A PHP Client for the BOL.com Plaza API

2.8.0 2018-12-13 14:07 UTC

This package is auto-updated.

Last update: 2024-04-14 02:13:20 UTC


README

Build Status Latest Stable Version Total Downloads License composer.lock

This is an open source PHP client for the Bol.com Plaza API.

Installation

Get it with composer

Run the command:

composer require wienkit/bol-plaza-php-client

Example: get open orders

<?php

require __DIR__ . '/vendor/autoload.php';

$publickey = '--YOUR PUBLIC KEY--';
$privatekey = '--YOUR PRIVATE KEY--';

$client = new Wienkit\BolPlazaClient\BolPlazaClient($publickey, $privatekey);

$orders = $client->getOrders();

var_dump($orders);

See the tests folder for more information