|
1 | 1 | # clue/reactphp-flux |
2 | 2 |
|
3 | | -[](https://github.com/clue/reactphp-flux/actions) |
| 3 | +[](https://github.com/clue/reactphp-flux/actions) |
4 | 4 | [](https://packagist.org/packages/clue/reactphp-flux) |
5 | 5 |
|
6 | 6 | Flux, the lightweight stream processor to concurrently do many (but not too many) things at once, |
@@ -117,7 +117,7 @@ $transformer->on('error', 'printf'); |
117 | 117 |
|
118 | 118 | ``` |
119 | 119 |
|
120 | | -See also the [examples](examples). |
| 120 | +See also the [examples](examples/). |
121 | 121 |
|
122 | 122 | By changing the `$concurrency` parameter, you can see how processing this list |
123 | 123 | without concurrency takes near `4s`, while using a concurrency setting of `5` |
@@ -651,36 +651,36 @@ all operations in memory without using a streaming approach. |
651 | 651 |
|
652 | 652 | ## Install |
653 | 653 |
|
654 | | -The recommended way to install this library is [through Composer](https://getcomposer.org). |
| 654 | +The recommended way to install this library is [through Composer](https://getcomposer.org/). |
655 | 655 | [New to Composer?](https://getcomposer.org/doc/00-intro.md) |
656 | 656 |
|
657 | 657 | This project follows [SemVer](https://semver.org/). |
658 | 658 | This will install the latest supported version: |
659 | 659 |
|
660 | 660 | ```bash |
661 | | -$ composer require clue/reactphp-flux:^1.3 |
| 661 | +composer require clue/reactphp-flux:^1.3 |
662 | 662 | ``` |
663 | 663 |
|
664 | 664 | See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. |
665 | 665 |
|
666 | 666 | This project aims to run on any platform and thus does not require any PHP |
667 | | -extensions and supports running on legacy PHP 5.3 through current PHP 7+ and |
| 667 | +extensions and supports running on legacy PHP 5.3 through current PHP 8+ and |
668 | 668 | HHVM. |
669 | | -It's *highly recommended to use PHP 7+* for this project. |
| 669 | +It's *highly recommended to use the latest supported PHP version* for this project. |
670 | 670 |
|
671 | 671 | ## Tests |
672 | 672 |
|
673 | 673 | To run the test suite, you first need to clone this repo and then install all |
674 | | -dependencies [through Composer](https://getcomposer.org): |
| 674 | +dependencies [through Composer](https://getcomposer.org/): |
675 | 675 |
|
676 | 676 | ```bash |
677 | | -$ composer install |
| 677 | +composer install |
678 | 678 | ``` |
679 | 679 |
|
680 | 680 | To run the test suite, go to the project root and run: |
681 | 681 |
|
682 | 682 | ```bash |
683 | | -$ php vendor/bin/phpunit |
| 683 | +vendor/bin/phpunit |
684 | 684 | ``` |
685 | 685 |
|
686 | 686 | ## License |
|
0 commit comments