Skip to content

Commit b3ff9c8

Browse files
authored
Merge pull request #458 from nhedger/chore/improve-readme
chore(docs): remove $ sign from shell commands
2 parents cf6b150 + dc8ca43 commit b3ff9c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2920,7 +2920,7 @@ This project follows [SemVer](https://semver.org/).
29202920
This will install the latest supported version:
29212921

29222922
```bash
2923-
$ composer require react/http:^1.6
2923+
composer require react/http:^1.6
29242924
```
29252925

29262926
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
@@ -2936,21 +2936,21 @@ To run the test suite, you first need to clone this repo and then install all
29362936
dependencies [through Composer](https://getcomposer.org/):
29372937

29382938
```bash
2939-
$ composer install
2939+
composer install
29402940
```
29412941

29422942
To run the test suite, go to the project root and run:
29432943

29442944
```bash
2945-
$ vendor/bin/phpunit
2945+
vendor/bin/phpunit
29462946
```
29472947

29482948
The test suite also contains a number of functional integration tests that rely
29492949
on a stable internet connection.
29502950
If you do not want to run these, they can simply be skipped like this:
29512951

29522952
```bash
2953-
$ vendor/bin/phpunit --exclude-group internet
2953+
vendor/bin/phpunit --exclude-group internet
29542954
```
29552955

29562956
## License

0 commit comments

Comments
 (0)