ydg/yunxuan-cps-sdk

yunxuan cps sdk

Installs: 238

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ydg/yunxuan-cps-sdk

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

This package is auto-updated.

Last update: 2025-10-10 10:52:07 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
]);