anourvalar/http-client

1.9.8 2024-03-27 13:00 UTC

This package is auto-updated.

Last update: 2024-03-27 13:01:51 UTC


README

Installation

composer require anourvalar/http-client

Usage

API Client (JSON)

$http = new \AnourValar\HttpClient\Http;

$http->asJsonClient()->authToken('...')->body(['foo' => 'bar'])->post('https://google')->dump();

Web Browser (Robot)

$http = new \AnourValar\HttpClient\Http;

$http->asBrowser()->referer('https://google.com')->get('https://google.com/?start=10')->dump();