ydg/yunxuan-cps-sdk

yunxuan cps sdk

v1.0.0 2024-12-10 09:02 UTC

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
]);