File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed
Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.6.5 (2022-09-16)
4+
5+ * Feature: Full support for PHP 8.1 and PHP 8.2 release.
6+ (#91 by @SimonFrings and #99 by @WyriHaximus )
7+
8+ * Feature / Fix: Improve error reporting when custom error handler is used.
9+ (#94 by @clue )
10+
11+ * Minor documentation improvements.
12+ (#92 by @SimonFrings and #95 by @nhedger )
13+
14+ * Improve test suite, skip failing tests on bugged versions and fix legacy HHVM build.
15+ (#96 and #98 by @clue and #93 by @SimonFrings )
16+
317## 0.6.4 (2021-10-12)
418
519* Feature / Fix: Skip sigchild check if ` phpinfo() ` has been disabled.
Original file line number Diff line number Diff line change @@ -582,27 +582,27 @@ $process->start();
582582
583583## Install
584584
585- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
585+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
586586[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
587587
588588This will install the latest supported version:
589589
590590``` bash
591- composer require react/child-process:^0.6.4
591+ composer require react/child-process:^0.6.5
592592```
593593
594594See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
595595
596596This project aims to run on any platform and thus does not require any PHP
597597extensions and supports running on legacy PHP 5.3 through current PHP 8+ and HHVM.
598- It's * highly recommended to use PHP 7+ * for this project.
598+ It's * highly recommended to use the latest supported PHP version * for this project.
599599
600600See above note for limited [ Windows Compatibility] ( #windows-compatibility ) .
601601
602602## Tests
603603
604604To run the test suite, you first need to clone this repo and then install all
605- dependencies [ through Composer] ( https://getcomposer.org ) :
605+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
606606
607607``` bash
608608composer install
You can’t perform that action at this time.
0 commit comments