Official PHP SDK for Hookfreight.
composer require hookfreight/hookfreight<?php
require 'vendor/autoload.php';
use Hookfreight\Config;
use Hookfreight\Hookfreight;
$hf = new Hookfreight(new Config(apiKey: 'hf_sk_...'));
$deliveries = $hf->deliveries->list(['limit' => 10]);
print_r($deliveries);- Apps: list/create/get/update/delete
- Endpoints: list/create/get/update/delete
- Events: list/get/listByEndpoint/replay
- Deliveries: list/listByEvent/retry/queueStats
- Hookfreight Cloud and self-hosted base URL support
- Typed exception hierarchy for API and network failures
Apache-2.0