33Streaming zlib compressor and decompressor for [ ReactPHP] ( https://reactphp.org/ ) ,
44supporting compression and decompression of GZIP, ZLIB and raw DEFLATE formats.
55
6- > Note: This project is in beta stage! Feel free to report any issues you encounter.
7-
86** Table of contents**
97
8+ * [ Support us] ( #support-us )
109* [ Quickstart example] ( #quickstart-example )
1110* [ Formats] ( #formats )
1211 * [ GZIP format] ( #gzip-format )
@@ -20,6 +19,16 @@ supporting compression and decompression of GZIP, ZLIB and raw DEFLATE formats.
2019* [ License] ( #license )
2120* [ More] ( #more )
2221
22+ ## Support us
23+
24+ We invest a lot of time developing, maintaining and updating our awesome
25+ open-source projects. You can help us sustain this high-quality of our work by
26+ [ becoming a sponsor on GitHub] ( https://github.com/sponsors/clue ) . Sponsors get
27+ numerous benefits in return, see our [ sponsoring page] ( https://github.com/sponsors/clue )
28+ for details.
29+
30+ Let's take these projects to the next level together! 🚀
31+
2332## Quickstart example
2433
2534Once [ installed] ( #install ) , you can use the following code to pipe a readable
@@ -166,11 +175,11 @@ For more details, see ReactPHP's
166175The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
167176[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
168177
169- While in beta, this project does not currently follow [ SemVer] ( https://semver.org/ ) .
178+ This project follows [ SemVer] ( https://semver.org/ ) .
170179This will install the latest supported version:
171180
172181``` bash
173- $ composer require clue/zlib-react:^0.2.2
182+ $ composer require clue/zlib-react:^1.0
174183```
175184
176185See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
@@ -190,6 +199,11 @@ If you need to support legacy PHP versions and legacy HHVM, you may want to
190199check out the legacy ` v0.2.x ` release branch.
191200This legacy release branch also provides an installation candidate that does not
192201require ` ext-zlib ` during installation but uses runtime checks instead.
202+ In this case, you can install this project like this:
203+
204+ ``` bash
205+ $ composer require " clue/zlib-react:^1.0||^0.2.2"
206+ ```
193207
194208## Tests
195209
0 commit comments