1
1
# 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 )
2
2
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
4
4
CONNECT proxy server, built on top of [ ReactPHP] ( https://reactphp.org ) .
5
5
6
6
HTTP CONNECT proxy servers (also commonly known as "HTTPS proxy" or "SSL proxy")
@@ -34,6 +34,7 @@ existing higher-level protocol implementation.
34
34
35
35
** Table of contents**
36
36
37
+ * [ Support us] ( #support-us )
37
38
* [ Quickstart example] ( #quickstart-example )
38
39
* [ Usage] ( #usage )
39
40
* [ ProxyConnector] ( #proxyconnector )
@@ -51,6 +52,16 @@ existing higher-level protocol implementation.
51
52
* [ License] ( #license )
52
53
* [ More] ( #more )
53
54
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
+
54
65
## Quickstart example
55
66
56
67
The 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:
319
330
320
331
``` php
321
332
$proxy = new ProxyConnector('127.0.0.1:8080', $connector, array(
322
- 'Proxy-Authorization' => 'Bearer abc123',
333
+ 'Proxy-Authorization' => 'Bearer abc123',
323
334
'User-Agent' => 'ReactPHP'
324
335
));
325
336
```
@@ -389,7 +400,7 @@ This project follows [SemVer](https://semver.org/).
389
400
This will install the latest supported version:
390
401
391
402
``` bash
392
- $ composer require clue/http-proxy-react:^1.4
403
+ $ composer require clue/http-proxy-react:^1.5
393
404
```
394
405
395
406
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
0 commit comments