smart-dato / php-olc-sdk
PHP OLC SDK with saloon
Fund package maintenance!
smart-dato
Requires
- php: ^8.4
- saloonphp/saloon: ^3.0
Requires (Dev)
- laravel/pint: ^1.0
- pestphp/pest: ^3.0
- spatie/ray: ^1.28
README
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.