@@ -959,14 +959,14 @@ You can start a local SOCKS server by creating a loopback connection to your
959959local system if you already run an SSH daemon:
960960
961961``` bash
962- $ ssh -D 1080 localhost
962+ ssh -D 1080 localhost
963963```
964964
965965Alternatively, you can start a local SOCKS server tunneling through a given
966966remote host that runs an SSH daemon:
967967
968968``` bash
969- $ ssh -D 1080 example.com
969+ ssh -D 1080 example.com
970970```
971971
972972Now you can simply use this SSH SOCKS server like this:
@@ -990,7 +990,7 @@ As an alternative, recent OpenSSH client versions also support
990990on Unix file system permissions instead:
991991
992992``` bash
993- $ ssh -D/tmp/proxy.sock example.com
993+ ssh -D/tmp/proxy.sock example.com
994994```
995995
996996Now you can simply use this SSH SOCKS server like this:
@@ -1047,7 +1047,7 @@ This project follows [SemVer](https://semver.org/).
10471047This will install the latest supported version:
10481048
10491049``` bash
1050- $ composer require clue/socks-react:^1.3
1050+ composer require clue/socks-react:^1.4
10511051```
10521052
10531053See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
@@ -1063,20 +1063,20 @@ To run the test suite, you first need to clone this repo and then install all
10631063dependencies [ through Composer] ( https://getcomposer.org/ ) :
10641064
10651065``` bash
1066- $ composer install
1066+ composer install
10671067```
10681068
10691069To run the test suite, go to the project root and run:
10701070
10711071``` bash
1072- $ vendor/bin/phpunit
1072+ vendor/bin/phpunit
10731073```
10741074
10751075The test suite contains a number of tests that rely on a working internet
10761076connection, alternatively you can also run it like this:
10771077
10781078``` bash
1079- $ vendor/bin/phpunit --exclude-group internet
1079+ vendor/bin/phpunit --exclude-group internet
10801080```
10811081
10821082## License
0 commit comments