dakalab / yun-express
Unofficial PHP SDK for YunTu express
v1.0
2019-02-20 16:05 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-08 16:33:02 UTC
README
Unofficial PHP SDK for YunTu express (https://www.yunexpress.com/)
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();
}