@@ -2904,27 +2904,27 @@ new React\Http\Middleware\RequestBodyParserMiddleware(10 * 1024, 100); // 100 fi
2904
2904
2905
2905
## Install
2906
2906
2907
- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
2907
+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
2908
2908
[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
2909
2909
2910
2910
This project follows [ SemVer] ( https://semver.org/ ) .
2911
2911
This will install the latest supported version:
2912
2912
2913
2913
``` bash
2914
- $ composer require react/http:^1.5
2914
+ $ composer require react/http:^1.6
2915
2915
```
2916
2916
2917
2917
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
2918
2918
2919
2919
This project aims to run on any platform and thus does not require any PHP
2920
2920
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
2921
2921
HHVM.
2922
- It's * highly recommended to use PHP 7+ * for this project.
2922
+ It's * highly recommended to use the latest supported PHP version * for this project.
2923
2923
2924
2924
## Tests
2925
2925
2926
2926
To run the test suite, you first need to clone this repo and then install all
2927
- dependencies [ through Composer] ( https://getcomposer.org ) :
2927
+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
2928
2928
2929
2929
``` bash
2930
2930
$ composer install
@@ -2933,15 +2933,15 @@ $ composer install
2933
2933
To run the test suite, go to the project root and run:
2934
2934
2935
2935
``` bash
2936
- $ php vendor/bin/phpunit
2936
+ $ vendor/bin/phpunit
2937
2937
```
2938
2938
2939
2939
The test suite also contains a number of functional integration tests that rely
2940
2940
on a stable internet connection.
2941
2941
If you do not want to run these, they can simply be skipped like this:
2942
2942
2943
2943
``` bash
2944
- $ php vendor/bin/phpunit --exclude-group internet
2944
+ $ vendor/bin/phpunit --exclude-group internet
2945
2945
```
2946
2946
2947
2947
## License
0 commit comments