dbx12 / yii2-dhl
Connect you Yii2 application with the DHL parcel tracking API
Requires
- php: ^7.3
- ext-json: *
- guzzlehttp/guzzle: ^7.0
- yiisoft/yii2: ~2.0.0
Requires (Dev)
- codeception/codeception: ^4.1
- codeception/module-asserts: ^1.0.0
- roave/security-advisories: dev-master
This package is auto-updated.
Last update: 2025-03-16 16:58:53 UTC
README
Connect you Yii2 application with the DHL parcel tracking API. This project was created to work with API version 1.1.0.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist dbx12/yii2-dhl "*"
or add
"dbx12/yii2-dhl": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, configure it as component in your config files. You need to register here on the DHL Developer Portal to get an API key for the Shipment Tracking - Unified API. Put the consumer key in your config file as seen below.
return [
'components' => [
'dhl' => [
'class' => \dbx12\dhl_component\DhlComponent::class,
'consumerKey' => 'consumer-key-here'
],
],
];
You can than use it as component, for example, if you want to find out about the parcel with the tracking number
00123456789123456789
, you would do this:
$shipment = Yii::$app->dhl->getShipment('00123456789123456789');
The return value is basically a \yii\base\Model
object, the structure is mostly oriented on the documentation on the
documented schema here. Some
differences exist due to the inner workings of Yii models.