adlnetworks/laravel-dhlparcel

DHL Parcel API client for Laravel

1.3.1 2020-06-22 15:39 UTC

This package is not auto-updated.

Last update: 2025-03-26 12:34:43 UTC


README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score StyleCI Total Downloads

This package incorporates the DHL Parcel API client into your Laravel project.

Installation

You can install the package via composer:

composer require mvdnbrk/laravel-dhlparcel

Configuration

All you need to do is add your credentials to the .env file:

DHLPARCEL_ID=YOUR-USER-ID
DHLPARCEL_SECRET=YOUR-SECRET-KEY

Usage

use Mvdnbrk\Laravel\Facades\DhlParcel;

$shipment = DhlParcel::shipments()->create([
   ...
]);

Global helper method

For your convenience this package provides a global dhlparcel() helper function.

dhlparcel()->shipments()->create([
   ...
]);

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email mvdnbrk@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.