55
66Async [ Redis] ( https://redis.io/ ) client implementation, built on top of [ ReactPHP] ( https://reactphp.org/ ) .
77
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+
817[ Redis] ( https://redis.io/ ) is an open source, advanced, in-memory key-value database.
918It offers a set of simple, atomic operations in order to work with its primitive data types.
1019Its lightweight design and fast operation makes it an ideal candidate for modern application stacks.
@@ -606,11 +615,11 @@ See also the [`close()`](#close) method.
606615The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
607616[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
608617
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:
611620
612621``` bash
613- $ composer require clue/redis-react:^2.6
622+ $ composer require clue/redis-react:^3@dev
614623```
615624
616625See 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
620629HHVM.
621630It's * highly recommended to use the latest supported PHP version* for this project.
622631
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+
623640## Tests
624641
625642To run the test suite, you first need to clone this repo and then install all
0 commit comments