11# clue/reactphp-http-proxy [ ![ Build Status] ( https://travis-ci.org/clue/reactphp-http-proxy.svg?branch=master )] ( https://travis-ci.org/clue/reactphp-http-proxy )
22
3- Async HTTP proxy connector, use any TCP/IP-based protocol through an HTTP
3+ Async HTTP proxy connector, tunnel any TCP/IP-based protocol through an HTTP
44CONNECT proxy server, built on top of [ ReactPHP] ( https://reactphp.org ) .
55
66HTTP CONNECT proxy servers (also commonly known as "HTTPS proxy" or "SSL proxy")
@@ -34,6 +34,7 @@ existing higher-level protocol implementation.
3434
3535** Table of contents**
3636
37+ * [ Support us] ( #support-us )
3738* [ Quickstart example] ( #quickstart-example )
3839* [ Usage] ( #usage )
3940 * [ ProxyConnector] ( #proxyconnector )
@@ -51,6 +52,16 @@ existing higher-level protocol implementation.
5152* [ License] ( #license )
5253* [ More] ( #more )
5354
55+ ## Support us
56+
57+ We invest a lot of time developing, maintaining and updating our awesome
58+ open-source projects. You can help us sustain this high-quality of our work by
59+ [ becoming a sponsor on GitHub] ( https://github.com/sponsors/clue ) . Sponsors get
60+ numerous benefits in return, see our [ sponsoring page] ( https://github.com/sponsors/clue )
61+ for details.
62+
63+ Let's take these projects to the next level together! 🚀
64+
5465## Quickstart example
5566
5667The following example code demonstrates how this library can be used to send a
@@ -319,7 +330,7 @@ you may simply pass an assoc array of additional request headers like this:
319330
320331``` php
321332$proxy = new ProxyConnector('127.0.0.1:8080', $connector, array(
322- 'Proxy-Authorization' => 'Bearer abc123',
333+ 'Proxy-Authorization' => 'Bearer abc123',
323334 'User-Agent' => 'ReactPHP'
324335));
325336```
@@ -389,7 +400,7 @@ This project follows [SemVer](https://semver.org/).
389400This will install the latest supported version:
390401
391402``` bash
392- $ composer require clue/http-proxy-react:^1.4
403+ $ composer require clue/http-proxy-react:^1.5
393404```
394405
395406See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
0 commit comments