5
5
6
6
Async [ Redis] ( https://redis.io/ ) client implementation, built on top of [ ReactPHP] ( https://reactphp.org/ ) .
7
7
8
+ > ** Development version:** This branch contains the code for the upcoming 3.0 release.
9
+ > For the code of the current stable 2.x release, check out the
10
+ > [ ` 2.x ` branch] ( https://github.com/reactphp/promise/tree/2.x ) .
11
+ >
12
+ > The upcoming 3.0 release will be the way forward for this package.
13
+ > However, we will still actively support 2.x for those not yet
14
+ > on the latest version.
15
+ > See also [ installation instructions] ( #install ) for more details.
16
+
8
17
[ Redis] ( https://redis.io/ ) is an open source, advanced, in-memory key-value database.
9
18
It offers a set of simple, atomic operations in order to work with its primitive data types.
10
19
Its lightweight design and fast operation makes it an ideal candidate for modern application stacks.
@@ -606,11 +615,11 @@ See also the [`close()`](#close) method.
606
615
The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
607
616
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
608
617
609
- This project follows [ SemVer] ( https://semver.org/ ) .
610
- This will install the latest supported version:
618
+ Once released, this project will follow [ SemVer] ( https://semver.org/ ) .
619
+ At the moment, this will install the latest development version:
611
620
612
621
``` bash
613
- $ composer require clue/redis-react:^2.6
622
+ $ composer require clue/redis-react:^3@dev
614
623
```
615
624
616
625
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
@@ -620,6 +629,14 @@ extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
620
629
HHVM.
621
630
It's * highly recommended to use the latest supported PHP version* for this project.
622
631
632
+ We're committed to providing long-term support (LTS) options and to provide a
633
+ smooth upgrade path. You may target multiple versions at the same time to
634
+ support a wider range of PHP versions like this:
635
+
636
+ ``` bash
637
+ $ composer require " clue/redis-react:^3@dev || ^2"
638
+ ```
639
+
623
640
## Tests
624
641
625
642
To run the test suite, you first need to clone this repo and then install all
0 commit comments