dakalab/yun-express

Unofficial PHP SDK for YunTu express

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

This package is auto-updated.

Last update: 2024-05-08 15:32:43 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();
}