Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hello 3.x development branch #272

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@

[ReactPHP](https://reactphp.org/)'s core reactor event loop that libraries can use for evented I/O.

> **Development version:** This branch contains the code for the upcoming v3
> release. For the code of the current stable v1 release, check out the
> [`1.x` branch](https://github.com/reactphp/event-loop/tree/1.x).
>
> The upcoming v3 release will be the way forward for this package. However,
> we will still actively support v1 for those not yet on the latest version.
> See also [installation instructions](#install) for more details.

In order for async based libraries to be interoperable, they need to use the
same event loop. This component provides a common `LoopInterface` that any
library can target. This allows them to be used in the same loop, with one
Expand Down Expand Up @@ -885,11 +893,11 @@ to remove a stream that was never added or is invalid has no effect.
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/event-loop:^1.5
composer require react/event-loop:^3@dev
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
Expand Down