Search by

smart-dato / brt-tracking

smart-dato

Laravel package for interfacing with the BRT VAS100 tracking SOAP webservices.

Package info

github.com/smart-dato/brt-tracking

pkg:composer/smart-dato/brt-tracking

Fund package maintenance!

SmartDato

Statistics

Installs: 4 353

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.5 2026-04-01 11:28 UTC

This package is auto-updated.

Last update: 2026-09-23 07:23:51 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package provides a Laravel-friendly wrapper around the BRT VAS100 tracking SOAP services. It allows you to resolve shipment identifiers based on your own references, fetch full shipment details, and retrieve legends for statuses and events. It also includes utilities for caching and patching the WSDL files to ensure that PHP's SOAP client uses secure HTTPS endpoints.

Installation

You can install the package via composer:

composer require smart-dato/brt-tracking

You can publish the config file with:

php artisan vendor:publish --tag="brt-tracking-config"
BRT_CLIENT_ID=your-client-id
BRT_LANG=en
BRT_THROTTLE_PER_MINUTE=250
BRT_LOG_CHANNEL=

The config also holds the WSDL and endpoint URLs (production by default), timeout and retry values, and the local WSDL cache settings.

Optionally you may cache the WSDL files to fix the http/https mismatch:

php artisan brt:cache-wsdl

Usage

You can resolve the BrtTrackingClient from the service container or use the facade provided by this package. All methods return simple arrays or data objects for easy consumption.

use SmartDato\BrtTracking\Facades\BrtTracking;

// Look up a shipment id by your numeric reference
$shipmentId = BrtTracking::getShipmentIdByRMN(123456789);

// Fetch detailed shipment information
$shipment = BrtTracking::trackingByShipmentId($shipmentId);

// Retrieve legends for statuses and events
$esiti = BrtTracking::getLegendaEsiti();
$eventi = BrtTracking::getLegendaEventi();

See the published configuration file for all available options.

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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