phpnomad / fetch
Client-side HTTP requests and strategies.
Requires
- phpnomad/http: ^1.1
Requires (Dev)
- phpnomad/tests: ^0.1.0 || ^0.3.0
This package is auto-updated.
Last update: 2026-04-14 23:43:44 UTC
README
phpnomad/fetch is the client-side HTTP abstraction for PHPNomad applications. It defines the FetchStrategy interface that application code depends on when it needs to make outbound HTTP requests, along with a FetchPayload value object and a fluent builder for assembling requests.
The package intentionally ships no transport of its own. Concrete implementations live in integration packages so your application code stays portable across runtimes. Pair it with phpnomad/guzzle-fetch-integration for Guzzle-backed transport, with the FetchStrategy in phpnomad/wordpress-integration for a wp_remote_request-backed transport, or write your own by implementing the interface. The same calling code works in every case. phpnomad/fetch powers outbound HTTP in Siren and several other PHPNomad-based systems in production.
Installation
composer require phpnomad/fetch
You also need a strategy implementation. The common choices are phpnomad/guzzle-fetch-integration and the FetchStrategy included in phpnomad/wordpress-integration.
Quick Start
Build a FetchPayload and hand it to the strategy. The example below makes a GET request to a JSON API with a custom header and two query parameters.
<?php namespace MyApp\Http; use PHPNomad\Fetch\Interfaces\FetchStrategy; use PHPNomad\Fetch\Models\FetchPayloadBuilder; use PHPNomad\Http\Enums\Method; class WidgetClient { protected FetchStrategy $fetchStrategy; public function __construct(FetchStrategy $fetchStrategy) { $this->fetchStrategy = $fetchStrategy; } public function listWidgets(int $page, int $perPage): array { $response = $this->fetchStrategy->fetch( (new FetchPayloadBuilder()) ->setMethod(Method::Get) ->setUrl('https://api.example.com/widgets') ->setHeader('Accept', 'application/json') ->setParam('page', $page) ->setParam('per_page', $perPage) ->build() ); if ($response->getStatus() >= 400) { return []; } return $response->getJson(); } }
The FetchStrategy instance is typically resolved from the container and injected into the services that need it. Because your code depends on the interface rather than a specific HTTP client, the same WidgetClient runs unchanged whether the underlying transport is Guzzle, wp_remote_request, or a custom implementation.
Key Concepts
FetchStrategyis the interface your application depends on. It exposes a single method,fetch(FetchPayload): Response.FetchPayloadis an immutable value object that carries the URL, HTTP method, headers, body, and query parameters for a single request.FetchPayloadBuilderprovides a fluent API for assembling a payload step by step when constructor arguments feel awkward.- The
Responsereturned byfetch()comes fromphpnomad/http, so status codes, headers, and body access are uniform across every transport. - To add a new transport, implement
FetchStrategyagainst the HTTP client of your choice and bind your implementation to the interface in your container.
Documentation
Full PHPNomad documentation lives at phpnomad.com.
License
Released under the MIT License.