PHPackages                             libaro/shipmenttracker - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. libaro/shipmenttracker

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

libaro/shipmenttracker
======================

Shipment Tracker

1.0.0(3y ago)99[3 issues](https://github.com/libaro-io/ShipmentTracker/issues)[3 PRs](https://github.com/libaro-io/ShipmentTracker/pulls)MITPHPPHP ^8.0

Since Jun 27Pushed 2y ago2 watchersCompare

[ Source](https://github.com/libaro-io/ShipmentTracker)[ Packagist](https://packagist.org/packages/libaro/shipmenttracker)[ Docs](https://github.com/libaro-io/ShipmentTracker)[ RSS](/packages/libaro-shipmenttracker/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (6)Versions (10)Used By (0)

Shipment Tracker
================

[](#shipment-tracker)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6adb9fba494b7542fed5a34354363ae604561a057dc8336360a0cbb42e4a96bd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c696261726f2f736869706d656e74747261636b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/libaro/shipmenttracker)[![GitHub Tests Action Status](https://camo.githubusercontent.com/7a0b8b731c43f8c7f8ec3a5d8457d36237f90de3502662d2491c86993bd53420/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c696261726f2d696f2f536869706d656e74547261636b65722f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/libaro-io/ShipmentTracker/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/435de2043be314965426952a8ae34905c65ef6adc4f2c7f4845a7879aef97d4b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c696261726f2d696f2f536869706d656e74547261636b65722f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/libaro-io/ShipmentTracker/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/895d807671b58a83563400e374e3c0d6dd1f67ec81eaaea52ac1325c1b2b8922/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c696261726f2f736869706d656e74747261636b65722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/libaro/shipmenttracker)

Package Description
-------------------

[](#package-description)

A package to easily track the status of you parcel. With support for multiple providers (BPost, PostNL and DHL). A provider can be added by creating an adapter for the new provider.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require libaro/shipmenttracker
```

You can publish the config file with:

```
php artisan vendor:publish --tag="shipment-tracker"
```

This is the contents of the published config file:

```
return [
    'providers' => [
        [
            'name' => 'bpost',
            'label' => 'BPost',
            'adapter' => \Libaro\ShipmentTracker\Adapters\BPostAdapter::class,
            'barcode_tags' => [3232],
            'credentials' => [
                'username' => env('SHIPMENT_TRACKER_BPOST_USERNAME'),
                'password' => env('SHIPMENT_TRACKER_BPOST_PASSWORD'),
            ],
        ],
        [
            'name' => 'post_nl',
            'label' => 'PostNL',
            'adapter' => \Libaro\ShipmentTracker\Adapters\PostNLAdapter::class,
            'barcode_tags' => ['3S', 'CD'],
            'credentials' => [
            ],
        ],
        [
            'name' => 'dhl',
            'label' => 'DHL',
            'adapter' => \Libaro\ShipmentTracker\Adapters\DhlAdapter::class,
            'barcode_tags' => [],
            'credentials' => [
                'api_key' => env('SHIPMENT_TRACKER_DHL_API_KEY'),
                'api_secret' => env('SHIPMENT_TRACKER_DHL_API_SECRET')
            ],
        ],
    ],
];
```

Usage
-----

[](#usage)

You can use the `Shipment` facade to track your parcel.

```
Shipment::track('5995390550944994')
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

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

[](#contributing)

Please see [CONTRIBUTING](https://github.com/libaro-io/.github/blob/main/CONTRIBUTING.md) for details.

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

[](#security-vulnerabilities)

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

Credits
-------

[](#credits)

- [Libaro](https://github.com/libaro-io)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 72% 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 ~18 days

Total

2

Last Release

1403d ago

Major Versions

0.0.1 → 1.0.02022-07-15

PHP version history (2 changes)0.0.1PHP ^7.4|^8.0

1.0.0PHP ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/9e1c94032186d05b780397bbc41c70bff8c561081df10719546a92de8dfd9498?d=identicon)[Libaro](/maintainers/Libaro)

---

Top Contributors

[![johan-libaro](https://avatars.githubusercontent.com/u/102519307?v=4)](https://github.com/johan-libaro "johan-libaro (54 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (7 commits)")[![KevinLibaro](https://avatars.githubusercontent.com/u/77958861?v=4)](https://github.com/KevinLibaro "KevinLibaro (2 commits)")[![RosiersRobin](https://avatars.githubusercontent.com/u/5263188?v=4)](https://github.com/RosiersRobin "RosiersRobin (2 commits)")[![martijnlibaro](https://avatars.githubusercontent.com/u/108723199?v=4)](https://github.com/martijnlibaro "martijnlibaro (1 commits)")

---

Tags

bpostdhllaravelpackagepostnllaraveltrackingshipmentlibaro

### Embed Badge

![Health badge](/badges/libaro-shipmenttracker/health.svg)

```
[![Health](https://phpackages.com/badges/libaro-shipmenttracker/health.svg)](https://phpackages.com/packages/libaro-shipmenttracker)
```

###  Alternatives

[gehrisandro/tailwind-merge-laravel

TailwindMerge for Laravel merges multiple Tailwind CSS classes by automatically resolving conflicts between them

341682.2k18](/packages/gehrisandro-tailwind-merge-laravel)[backpack/basset

Dead-simple way to load CSS or JS assets only once per page, when using Laravel 10+.

202832.4k6](/packages/backpack-basset)[firefly-iii/data-importer

Firefly III Data Import Tool.

7545.8k](/packages/firefly-iii-data-importer)[bensampo/laravel-embed

Painless responsive embeds for videos, slideshows and more.

142146.8k](/packages/bensampo-laravel-embed)[glhd/conveyor-belt

14797.0k](/packages/glhd-conveyor-belt)[nickurt/laravel-akismet

Akismet for Laravel 11.x/12.x/13.x

97139.6k2](/packages/nickurt-laravel-akismet)

PHPackages © 2026

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