You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://packagist.org/packages/clue/zlib-react)
5
5
6
6
Streaming zlib compressor and decompressor for [ReactPHP](https://reactphp.org/),
@@ -54,7 +54,7 @@ See also the [examples](examples).
54
54
## Formats
55
55
56
56
This library is a lightweight wrapper around the underlying zlib library.
57
-
The zlib library offers a number of different formats (sometimes referred to as *encodings*) detailled below.
57
+
The zlib library offers a number of different formats (sometimes referred to as *encodings*) detailed below.
58
58
59
59
### GZIP format
60
60
@@ -179,13 +179,14 @@ This project follows [SemVer](https://semver.org/).
179
179
This will install the latest supported version:
180
180
181
181
```bash
182
-
$ composer require clue/zlib-react:^1.1
182
+
composer require clue/zlib-react:^1.1
183
183
```
184
184
185
185
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
186
186
187
187
This project aims to run on any platform and thus does not require any PHP
188
188
extensions besides `ext-zlib` and supports running on PHP 7 through current PHP 8+.
189
+
It's *highly recommended to use the latest supported PHP version* for this project.
189
190
190
191
The `ext-zlib` extension is required for handling the underlying data compression
191
192
and decompression.
@@ -202,7 +203,7 @@ require `ext-zlib` during installation but uses runtime checks instead.
202
203
In this case, you can install this project like this:
203
204
204
205
```bash
205
-
$ composer require "clue/zlib-react:^1.0||^0.2.2"
206
+
composer require "clue/zlib-react:^1.0||^0.2.2"
206
207
```
207
208
208
209
## Tests
@@ -211,13 +212,13 @@ To run the test suite, you first need to clone this repo and then install all
0 commit comments