pixelfed/zttp

A developer-experience focused HTTP client, optimized for most common use cases.

Maintainers

Details

github.com/pixelfed/zttp

Source

Installs: 43 940

Dependents: 2

Suggesters: 0

Security: 0

Stars: 1

Watchers: 3

Forks: 118

v0.5.0 2022-08-06 04:58 UTC

This package is auto-updated.

Last update: 2024-04-06 08:38:54 UTC


README

Zttp is a simple Guzzle wrapper designed to provide a really pleasant development experience for most common use cases.

If you need more functionality, just use Guzzle :)

Real documentation is in the works, but for now read the tests.

$response = Zttp::withHeaders(['Fancy' => 'Pants'])->post($url, [
    'foo' => 'bar',
    'baz' => 'qux',
]);

$response->json();
// => [
//  'whatever' => 'was returned',
// ];

Installation

composer require kitetail/zttp