From 1615580e05c7334da07508b0d04b16c560d6743d Mon Sep 17 00:00:00 2001 From: Nicolas Hedger Date: Mon, 20 Jun 2022 16:42:03 +0200 Subject: [PATCH] chore(docs): remove leading dollar sign --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 405486d..e4ecab2 100644 --- a/README.md +++ b/README.md @@ -521,7 +521,7 @@ Once released, this project will follow [SemVer](https://semver.org/). At the moment, this will install the latest development version: ```bash -$ composer require react/async:^4@dev +composer require react/async:^4@dev ``` See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades. @@ -539,7 +539,7 @@ You may target multiple versions at the same time to support a wider range of PHP versions like this: ```bash -$ composer require "react/async:^4@dev || ^3@dev || ^2@dev" +composer require "react/async:^4@dev || ^3@dev || ^2@dev" ``` ## Tests @@ -548,13 +548,13 @@ To run the test suite, you first need to clone this repo and then install all dependencies [through Composer](https://getcomposer.org/): ```bash -$ composer install +composer install ``` To run the test suite, go to the project root and run: ```bash -$ php vendor/bin/phpunit +vendor/bin/phpunit ``` ## License