inserve / td-synnex-stream-one-api-php
A PHP wrapper for the TD Synnex Stream One API (v3)
0.1.3
2024-09-30 14:35 UTC
Requires
- php: ^8.2
- guzzlehttp/guzzle: ^7.7
- phpdocumentor/reflection-docblock: ^5.3
- psr/log: ^3.0
- symfony/property-access: ^6.3|^7
- symfony/serializer: ^6.3|^7
Requires (Dev)
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^10.2
- squizlabs/php_codesniffer: ^3.7
- vimeo/psalm: ^5.22
README
Status
About
A PHP Wrapper for TD Synnex Stream One API
Installation
composer require inserve/td-synnex-stream-one-api-php
Usage example
<?php use Inserve\StreamOneAPI\StreamOneAPIClient; require 'vendor/autoload.php'; $api = new StreamOneAPIClient(); $accessToken = $api->refreshToken('refresh.token'); if (! $accessToken) { echo 'Failed to obtain new access token.'; return; } $customers = $api->customer->list(123);