Learn more at Deliv.co.
Setup client
$client = new \Deliv\DelivClient('apikey', 'production||<defaults_to_staging>');
$client->deliveries->cancelDelivery('<delivery_id>');
Still a work in progress, but all methods are available in this style and format.
Create Estimate
$client->deliveries->createDeliveryEstimate($data);
Get Delivery Estimate
$client->deliveries->getDeliveryEstimate($id);
Create Delivery
$client->deliveries->createDelivery($data);
Get Delivery By Id
$client->deliveries->getDelivery('id');
Update Delivery
$client->deliveries->updateDelivery($delivery);
composer install --dev
phpunit
Heavily inspired by https://github.com/intercom/intercom-php
(c) 2017 iSourceWorldWide, LLC