diff --git a/README.md b/README.md index c48d003..421a00f 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,14 @@ $client->json(["key" => "value"])->post("https://example.com") // Add custom headers to request $client->headers(["key" => "value"])->get("https://example.com"); +// Ignore redirects +$client->withoutRedirects()->get("https://example.com"); + +// Proxy +$client->proxy("https://hostname:8080")->get("https://example.com"); + // Authentication $client->auth("auth_basic", ["username", "password"])->get("https://example.com"); $client->authBasic(["username", "password"])->get("https://example.com"); $client->authBearer("tokenhere")->get("https://example.com"); -``` \ No newline at end of file +```