/connect-api-sdk

Storeden Connect API SDK provides a toolkit to access the Storeden Connect API.More info at:

Primary LanguagePHPApache License 2.0Apache-2.0

Storeden Connect API for PHP

This repository contains the PHP Connect SDK that make your PHP app consume the Storeden Connect API.

Setup

Storeden Connect SDK can be installed:

git clone https://github.com/storeden/connect-api-sdk.git

Example

$conf = [
    'api_key' => '{your-app-key}',
    'api_exchange' => '{your-app-exchange}'
];

$api = new Storeden\Storeden($config);

$_store_info = $api->get('/store/info.json');

echo 'Store Name: '.$_store_info->response->store_name;

License

For more information, please see the license file.