ydg / yunxuan-cps-sdk
yunxuan cps sdk
v1.0.0
2024-12-10 09:02 UTC
Requires
- php: ^7.0|^8.0
- ext-json: *
- ydg/foudation-sdk: ^1.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.12
- phpunit/phpunit: ^9.5
- vlucas/phpdotenv: ^5.5
This package is auto-updated.
Last update: 2025-03-10 09:35:55 UTC
README
let php developer easier to access yunxuan cps api
Install the latest version with
$ composer require ydg/yunxuan-cps-sdk
Basic Usage
<?php use Ydg\YunxuanCpsSdk\Yunxuan; $app = new Yunxuan([ 'app_key' => 'your app_key', 'app_secret' => 'your app_secret', ]); $app->sku->list([ 'request_id' => uniqid(), 'page_index' => 1, 'page_size' => 10 ]);