Skip to content

Commit ddbf8ac

Browse files
authored
Merge pull request #126 from clue-labs/3.x-development
Hello `3.x` development branch
2 parents f911455 + edd918f commit ddbf8ac

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@
55

66
Async [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.
918
It offers a set of simple, atomic operations in order to work with its primitive data types.
1019
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.
606615
The 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

616625
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
620629
HHVM.
621630
It'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

625642
To run the test suite, you first need to clone this repo and then install all

0 commit comments

Comments
 (0)