FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Sellix/php-sdk: PHP SDK for the Sellix Developers API (developers.sellix.io). Quickly get started and create products, payments and more using PHP. · GitHub

/ php-sdk Public

Latest commit

 

History

26 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sellix PHP SDK

Introduction

Sellix public API for developers to access merchant resources

Requirements

  • php ^5.3
  • php-curl

Installation

Install the package through composer.

composer require sellix/php-sdk

Usage

<?php

require_once 'vendor/autoload.php';

use \Sellix\PhpSdk\Sellix;
use \Sellix\PhpSdk\SellixException;

// pass <MERCHANT_NAME> only if you need to be authenticated as an additional store

$client = new Sellix("<YOUR_API_KEY>", "<MERCHANT_NAME>");

try {
    $products = $client->get_products();
} catch (SellixException $e) {
    echo $e->__toString();
}

?>

Documentation

Sellix Developers API

About

PHP SDK for the Sellix Developers API (developers.sellix.io). Quickly get started and create products, payments and more using PHP.

Topics

Resources

Stars

8 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages


Back | FazBrowse Home | New Git URL