@@ -202,27 +202,27 @@ $socket->close();
202202
203203## Install
204204
205- The recommended way to install this library is [ through Composer] ( https://getcomposer.org ) .
205+ The recommended way to install this library is [ through Composer] ( https://getcomposer.org/ ) .
206206[ New to Composer?] ( https://getcomposer.org/doc/00-intro.md )
207207
208208This project follows [ SemVer] ( https://semver.org/ ) .
209209This will install the latest supported version:
210210
211211``` bash
212- $ composer require clue/socket-raw:^1.5
212+ $ composer require clue/socket-raw:^1.6
213213```
214214
215215See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
216216
217217This project aims to run on any platform and thus does not require any PHP
218218extensions besides ` ext-sockets ` and supports running on legacy PHP 5.3 through
219219current PHP 8+.
220- It's * highly recommended to use PHP 7+ * for this project.
220+ It's * highly recommended to use the latest supported PHP version * for this project.
221221
222222## Tests
223223
224224To run the test suite, you first need to clone this repo and then install all
225- dependencies [ through Composer] ( https://getcomposer.org ) :
225+ dependencies [ through Composer] ( https://getcomposer.org/ ) :
226226
227227``` bash
228228$ composer install
@@ -231,23 +231,23 @@ $ composer install
231231To run the test suite, go to the project root and run:
232232
233233``` bash
234- $ php vendor/bin/phpunit
234+ $ vendor/bin/phpunit
235235```
236236
237237Note that the test suite contains tests for ICMP sockets which require root
238238access on Unix/Linux systems. Therefor some tests will be skipped unless you run
239239the following command to execute the full test suite:
240240
241241``` bash
242- $ sudo php vendor/bin/phpunit
242+ $ sudo vendor/bin/phpunit
243243```
244244
245245The test suite also contains a number of functional integration tests that rely
246246on a stable internet connection.
247247If you do not want to run these, they can simply be skipped like this:
248248
249249``` bash
250- $ php vendor/bin/phpunit --exclude-group internet
250+ $ vendor/bin/phpunit --exclude-group internet
251251```
252252
253253## License
0 commit comments