PHPackages                             flooris/dpd-shipper-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. flooris/dpd-shipper-laravel

ActiveLibrary[API Development](/categories/api)

flooris/dpd-shipper-laravel
===========================

Laravel package for connecting to DPD Shipper API

0.0.4(1y ago)0592[1 issues](https://github.com/flooris/dpd-shipper-laravel/issues)[3 PRs](https://github.com/flooris/dpd-shipper-laravel/pulls)MITPHPPHP ^8.1

Since Apr 7Pushed 1y ago1 watchersCompare

[ Source](https://github.com/flooris/dpd-shipper-laravel)[ Packagist](https://packagist.org/packages/flooris/dpd-shipper-laravel)[ RSS](/packages/flooris-dpd-shipper-laravel/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (1)Dependencies (3)Versions (5)Used By (0)

DPD Shipper Laravel API
=======================

[](#dpd-shipper-laravel-api)

Laravel package for connecting to DPD Shipper API.

Requirements
------------

[](#requirements)

This package requires *Laravel 10.x* and *PHP 8.1* (or higher).

---

Flooris
-------

[](#flooris)

[![Flooris visual](https://camo.githubusercontent.com/3d021f9c6deac68be812aee023ea5879a79c5a9ec0c2b85610255a439e922b63/68747470733a2f2f666c6f6f7269732e6e6c2f696d672f636f6e7461696e6572732f6173736574732f6865616465722d696d6167652e776562702f33383331336330343232316233346336386362303237656430643239613761632e77656270)](https://camo.githubusercontent.com/3d021f9c6deac68be812aee023ea5879a79c5a9ec0c2b85610255a439e922b63/68747470733a2f2f666c6f6f7269732e6e6c2f696d672f636f6e7461696e6572732f6173736574732f6865616465722d696d6167652e776562702f33383331336330343232316233346336386362303237656430643239613761632e77656270)

We are a young and driven team of technicians with a mission. We ensure that our clients' online challenges are solved with manageable and sustainable tools. We connect existing and reliable solutions to each other. This allows us to create customized solutions, often in combination with professional (open-source) packages and APIs. We ensure that all online solutions always perform at the highest level. In addition, we provide professional support without hassle through our service portal.

---

Install the package via composer
--------------------------------

[](#install-the-package-via-composer)

```
composer require flooris/dpd-shipper-laravel
```

Publish the package config
--------------------------

[](#publish-the-package-config)

```
php artisan vendor:publish --tag=dpd-shipper-config
nano config/dpd-shipper.php
```

---

Usage example
-------------

[](#usage-example)

```
// Borsigstraße 20-22, 44145 Dortmund, Duitsland
// https://goo.gl/maps/FoKHQ4DwEEiY9ift5
$countryIso  = 'DE';
$postalCode  = '44145';
$parcelCount = 1;

$email       = 'test-dpd@flooris.nl';
$mobilePhone = '0612345678';

$shipmentProduct = new DpdShipmentProduct($countryIso, $postalCode);

$predict = $shipmentProduct->getPredict($countryIso, $email, $mobilePhone);

$parcels = new DpdParcels();
$parcels->setCustomerReferenceNumber1('TEST12345');
$parcels->setWeight(1);

$recipient = new DpdRecipient(
    name1: 'John Doe',
    street: 'Borsigstraße',
    houseNumber: '20-22',
    countryIso: 'DE',
    postalCode: $postalCode,
    city: 'Dortmund',
    email: $email
);

try {
    $shipmentLabel = $this->dpdShipperConnector->shipmentService()->createShipment(
        shipmentProduct: $shipmentProduct,
        parcelCount: $parcelCount,
        parcels: $parcels,
        sender: $this->dpdSender,
        recipient: $recipient,
        dpdPredict: $predict
    );

    $mpsId              = $shipmentLabel->mpsId;
    $barcodeCollection  = $shipmentLabel->getBarcodes();
    $pdfData            = $shipmentLabel->fileData;

} catch (DpdShipmentResponseException $e) {
} catch (\SoapFault $e) {
    throw $e;
}
```

---

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Florian Kwakkenbos](https://github.com/fkwakkenbos)
- [All Contributors](../../contributors)

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance40

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~228 days

Total

4

Last Release

500d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1033813?v=4)[flooris](/maintainers/flooris)[@flooris](https://github.com/flooris)

---

Top Contributors

[![fkwakkenbos](https://avatars.githubusercontent.com/u/1029218?v=4)](https://github.com/fkwakkenbos "fkwakkenbos (6 commits)")[![arthur1472](https://avatars.githubusercontent.com/u/3664286?v=4)](https://github.com/arthur1472 "arthur1472 (1 commits)")[![JSTLWK](https://avatars.githubusercontent.com/u/14042234?v=4)](https://github.com/JSTLWK "JSTLWK (1 commits)")[![TMBL-DEV](https://avatars.githubusercontent.com/u/43524471?v=4)](https://github.com/TMBL-DEV "TMBL-DEV (1 commits)")

### Embed Badge

![Health badge](/badges/flooris-dpd-shipper-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/flooris-dpd-shipper-laravel/health.svg)](https://phpackages.com/packages/flooris-dpd-shipper-laravel)
```

###  Alternatives

[spatie/laravel-responsecache

Speed up a Laravel application by caching the entire response

2.8k9.0M69](/packages/spatie-laravel-responsecache)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

44855.7k](/packages/harris21-laravel-fuse)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816334.1k3](/packages/defstudio-telegraph)[propaganistas/laravel-disposable-email

Disposable email validator

6023.0M7](/packages/propaganistas-laravel-disposable-email)[mike-bronner/laravel-model-caching

Automatic caching for Eloquent models.

2.4k91.9k1](/packages/mike-bronner-laravel-model-caching)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5022.0k](/packages/simplestats-io-laravel-client)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
