@@ -1486,23 +1486,23 @@ $promise = $connector->connect('localhost:80');
14861486
14871487## Install
14881488
1489- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
1489+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
14901490[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
14911491
14921492This project follows [ SemVer] ( https://semver.org/ ) .
14931493This will install the latest supported version:
14941494
14951495``` bash
1496- $ composer require react/socket:^1.9
1496+ $ composer require react/socket:^1.10
14971497```
14981498
14991499See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
15001500
15011501This project aims to run on any platform and thus does not require any PHP
15021502extensions and supports running on legacy PHP 5.3 through current PHP 8+ and HHVM.
1503- It's * highly recommended to use PHP 7+ * for this project, partly due to its vast
1504- performance improvements and partly because legacy PHP versions require several
1505- workarounds as described below.
1503+ It's * highly recommended to use the latest supported PHP version * for this project,
1504+ partly due to its vast performance improvements and partly because legacy PHP
1505+ versions require several workarounds as described below.
15061506
15071507Secure TLS connections received some major upgrades starting with PHP 5.6, with
15081508the defaults now being more secure, while older versions required explicit
@@ -1538,7 +1538,7 @@ on affected versions.
15381538## Tests
15391539
15401540To run the test suite, you first need to clone this repo and then install all
1541- dependencies [ through Composer] ( https://getcomposer.org ) :
1541+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
15421542
15431543``` bash
15441544$ composer install
@@ -1547,15 +1547,15 @@ $ composer install
15471547To run the test suite, go to the project root and run:
15481548
15491549``` bash
1550- $ php vendor/bin/phpunit
1550+ $ vendor/bin/phpunit
15511551```
15521552
15531553The test suite also contains a number of functional integration tests that rely
15541554on a stable internet connection.
15551555If you do not want to run these, they can simply be skipped like this:
15561556
15571557``` bash
1558- $ php vendor/bin/phpunit --exclude-group internet
1558+ $ vendor/bin/phpunit --exclude-group internet
15591559```
15601560
15611561## License
0 commit comments