smart-dato/php-olc-sdk

PHP OLC SDK with saloon

0.0.1 2025-04-18 12:54 UTC

This package is auto-updated.

Last update: 2025-04-18 12:55:41 UTC


README

Latest Version on Packagist Tests Total Downloads

This PHP package provides a clean and efficient integration of the OLC v2 API, a logistics platform API, enabling seamless communication with OLC's services. Built for modern PHP applications needing to interface with OLC for shipment tracking, shipment processing, and other logistics operations.

Installation

You can install the package via composer:

composer require smart-dato/php-olc-sdk

Usage

$connector = new OlcConnector(
    url: 'https://olc.test/',
    token: '...',
);

$response = $connector->send(
    new CreateShipmentRequest(
        new ShipmentObject(
            shipmentType: 'PARCEL',
            shippingService: 'EC',
            pickupAddress: new AddressObject(
                warehouse: 'WH_1'
            ),
            deliveryAddress: new AddressObject(
                personName: "John Doe",
                companyName: 'Acme Inc.',
                street: '123 Main St',
                city: 'Anytown',
                zipcode: '12345',
                countryCode: 'DE',
            ),
            parcels: (new ParcelObjectCollection)
                ->add(new ParcelObject(
                    weight: 2.5, height: 10, length: 10, width: 10,
                ))
                ->add(new ParcelObject(
                    weight: 1.23
                ))
        )
    )
);

$response = $connector->send(
    new GetShipmentLabelRequest(
        value: 'OLS000000000001'
    )
);

Testing

composer test

Changelog

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

Contributing

Please see CONTRIBUTING for details.

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.