arjanhulst/bol-plaza-php-client

A PHP Client for the BOL.com Plaza API

v2.3.1 2017-04-07 11:51 UTC

This package is not auto-updated.

Last update: 2024-11-21 06:36:26 UTC


README

Build Status

Bol.com Plaza API client for PHP

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

Installation

Get it with composer

Run the command:

composer require picqer/bol-plaza-php-client

Example: get orders

<?php

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

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

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

$orders = $client->getOrders();

var_dump($orders);

See the tests file for more information.

Thanks to @mwienk for migrating this package for the Bol Plaza API V2.