We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c5b52f9 + 6780006 commit a338743Copy full SHA for a338743
README.md
@@ -37,8 +37,14 @@ $client->json(["key" => "value"])->post("https://example.com")
37
// Add custom headers to request
38
$client->headers(["key" => "value"])->get("https://example.com");
39
40
+// Ignore redirects
41
+$client->withoutRedirects()->get("https://example.com");
42
+
43
+// Proxy
44
+$client->proxy("https://hostname:8080")->get("https://example.com");
45
46
// Authentication
47
$client->auth("auth_basic", ["username", "password"])->get("https://example.com");
48
$client->authBasic(["username", "password"])->get("https://example.com");
49
$client->authBearer("tokenhere")->get("https://example.com");
-```
50
+```
0 commit comments