phore/http-client

Http client library for fast api access

v1.0.9 2024-01-30 11:20 UTC

This package is auto-updated.

Last update: 2024-05-09 18:34:49 UTC


README

Actions Status

Easy to use http-client with fluent api.

Example

phore_http_request("http://localhost/test.php?case=200")->withMethod()

Request caching

Request Caching requires phore/cache package to be installed

$cache = new Cache(new ObjectStore(new FileSystemObjectStoreDriver("/tmp/cache1")));

$req = phore_http_request("http://localhost/")->withCache($cache)->send();
if ($req->isFromCache() === true)
    echo "From Cache: " . $req->getBody();

Examples: