dakalab/yun-express

Unofficial PHP SDK for YunTu express

Installs: 387

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/dakalab/yun-express

v1.0 2019-02-20 16:05 UTC

This package is auto-updated.

Last update: 2025-10-08 18:18:02 UTC


README

Unofficial PHP SDK for YunTu express (https://www.yunexpress.com/)

Build Status codecov Latest Stable Version Total Downloads License

Install

composer require dakalab/yun-express

Usage

$client = new Dakalab\YunExpress\Client($account, $secret);

try {
    $tracking = $client->getTrackingInfo($trackingNumber);
    print_r($tracking);
} catch (\Exception $e) {
    echo $e->getMessage();
}