deliverymatch / sdk
There is no license information available for the latest version (dev-main) of this package.
dev-main
2025-04-02 12:36 UTC
Requires
- php: >=8.1
- ext-json: *
- php-http/client-common: ^2.7
- psr/http-client: ^1.0
- psr/http-factory: ^1.1
Requires (Dev)
- ergebnis/phpstan-rules: ^2.6
- friendsofphp/php-cs-fixer: ^3.67
- laminas/laminas-diactoros: ^3.5
- php-http/curl-client: ^2.3
- php-http/mock-client: ^1.6
- phpro/grumphp: ^2.10
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^11.5
- squizlabs/php_codesniffer: ^3.11
This package is auto-updated.
Last update: 2025-04-02 12:36:18 UTC
README
A lightweight PHP SDK for integrating with the DeliveryMatch API.
Overview
The DeliveryMatch SDK provides a simple and efficient way to interact with the DeliveryMatch shipping and logistics platform. This SDK helps developers easily integrate shipping solutions, rate calculations, label generation, tracking, and other DeliveryMatch services into your PHP applications
Requirements
- PHP >= 8.1
- A PSR-17 implementation
- A PSR-18 implementation
Installation
Install the package using Composer:
composer require deliverymatch/sdk
Basic usage
$client = new \DeliveryMatch\Sdk\Client( apikey: getenv("DM_API_KEY"), clientId: getenv("DM_CLIENT_ID"), environment: \DeliveryMatch\Sdk\HttpClient\ApiEnvironment::PRODUCTION ); // For endpoints that are currently mapped in the sdk $response = $client->shipments()->insert(new \DeliveryMatch\Sdk\Api\Dto\Request\ShipmentRequest( client: new \DeliveryMatch\Sdk\Api\Dto\Request\Client(...), customer: new \DeliveryMatch\Sdk\Api\Dto\Request\Customer(...), shipment: new \DeliveryMatch\Sdk\Api\Dto\Request\Shipment(...), packages: [new \DeliveryMatch\Sdk\Api\Dto\Request\Package(...)], products: [new \DeliveryMatch\Sdk\Api\Dto\Request\Product(... )], priceIncl: 19.95, weight: 20.0 )); // For endpoints that are not (yet) available in the sdk $request = [ "shipment" => [ "id" => 123 ] ]; $response = $client->post("/getStatus", body: $request);