arjanhulst / bol-plaza-php-client
A PHP Client for the BOL.com Plaza API
Package info
github.com/arjanhulst/bol-plaza-php-client
pkg:composer/arjanhulst/bol-plaza-php-client
v2.3.1
2017-04-07 11:51 UTC
Requires
- php: >=5.5.9
Requires (Dev)
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
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.