/sellsy-client

PHP library to connect your applications to your Sellsy account account using the Sellsy API and build your websites and your platforms on the Sellsy technology.

Primary LanguagePHPMIT LicenseMIT

Teknoo Software - Sellsy client

SensioLabsInsight Build Status

PHP library to connect your applications to your Sellsy account account using the Sellsy API and build your websites and your platforms on the Sellsy technology.

Simple Example

  //Create the HTTP client
  $guzzleClient = new GuzzleHttp\Client();

  //Create the transport bridge
  $transportBridge = new Teknoo\Sellsy\Transport\Guzzle($guzzleClient);

  //Create the front object
  $sellsy = new Teknoo\Sellsy\Sellsy(
    $transportBridge
    'User Token'
    'User Secret'
    'Consumer Token'
    'Consumer Secret';
 );
    
 //Example of request, follow the API documentation of Sellsy API.
 print_r($sellsy->Infos()->getInfos());
 print_r($sellsy->AccountPrefs()->getCorpInfos());

How-to

Quick How-to to learn how use this library : Startup.

Installation & Requirements

To install this library with composer, run this command :

composer require teknoo/sellsy-client

To use the embedded Guzzle transport

composer require guzzlehttp/guzzle

This library requires :

* PHP 7+
* A PSR-7 implementation

API Documentation

Generated documentation from the library with PhpDocumentor : Open.

Credits

Richard Déloge - richarddeloge@gmail.com - Lead developer. Teknoo Software - http://teknoo.software

About Teknoo Software

Teknoo Software is a PHP software editor, founded by Richard Déloge. Teknoo Software's DNA is simple : Provide to our partners and to the community a set of high quality services or software, sharing knowledge and skills.

License

States is licensed under the MIT Licenses - see the licenses folder for details

Contribute :)

You are welcome to contribute to this project. Fork it on Github