From c58e4310206b4f0359b8f1c4349bd05bdc14c843 Mon Sep 17 00:00:00 2001 From: Simon Frings Date: Mon, 14 Feb 2022 11:33:31 +0100 Subject: [PATCH] Rename development branch to `0.2.x` --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6f80e0a0..b734332b 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,11 @@ [ReactPHP](https://reactphp.org/)'s filesystem component that enables non-blocking filesystem operations. +> **Development version:** This branch contains the code for the upcoming 0.2 +> release which will be the way forward for this package. +> +> See [installation instructions](#install) for more details. + **Table of Contents** * [Quickstart example](#quickstart-example) @@ -258,13 +263,19 @@ use React\Filesystem\Node\FileInterface;$filesystem->file( The recommended way to install this library is [through Composer](https://getcomposer.org). [New to Composer?](https://getcomposer.org/doc/00-intro.md) -This project follows [SemVer](https://semver.org/). -This will install the latest supported version: +Once released, this project will follow [SemVer](https://semver.org/). +At the moment, this will install the latest development version: ```bash -$ composer require react/filesystem:^0.2 +$ composer require react/filesystem:^0.2@dev ``` +See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. + +This project aims to run on any platform and thus does not require any PHP +extensions and supports running on PHP 8.1+. It's *highly recommended to use the +latest supported PHP version* for this project. + Installing any of the event loop extensions is suggested, but entirely optional. See also [event loop implementations](#loop-implementations) for more details.