wizishop/wizishop-php-sdk

WiziShop API SDK

Maintainers

Package info

github.com/WiziShop/wizishop-php-sdk

Homepage

pkg:composer/wizishop/wizishop-php-sdk

Statistics

Installs: 96

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 3

v1.0.7 2016-06-29 15:43 UTC

README

WiziShop PHP SDK

A PHP SDK (Software Development Kit) for the WiziShop RESTful API https://api.wizishop.com

Installation

Get composer

composer require wizishop/wizishop-php-sdk

Usage

Create a new user on Wizishop Admin

<?php

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

use WiziShop\SDK\Exception\ApiException;
use GuzzleHttp\Exception\TransferException;
use WiziShop\SDK\ApiClientFactory;

try {
    $wizishop = ApiClientFactory::authenticate('username', 'password');

    $orders = $wizishop->getOrders();

    // ...
} catch (ApiException $e) {
    echo $e->getErrorMessage();
} catch (TransferException $e) {
    echo $e->getMessage();
}

Tests

./bin/phpunit

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker.

Contributing

Contributing guidelines

Author

WiziShop

License

This project is licensed under the MIT license. See the LICENSE file for more info.