Skip to content

Commit a338743

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents c5b52f9 + 6780006 commit a338743

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,14 @@ $client->json(["key" => "value"])->post("https://example.com")
3737
// Add custom headers to request
3838
$client->headers(["key" => "value"])->get("https://example.com");
3939

40+
// Ignore redirects
41+
$client->withoutRedirects()->get("https://example.com");
42+
43+
// Proxy
44+
$client->proxy("https://hostname:8080")->get("https://example.com");
45+
4046
// Authentication
4147
$client->auth("auth_basic", ["username", "password"])->get("https://example.com");
4248
$client->authBasic(["username", "password"])->get("https://example.com");
4349
$client->authBearer("tokenhere")->get("https://example.com");
44-
```
50+
```

0 commit comments

Comments
 (0)