From a306fab8d798bd11e36bd420a2b01db9199791b2 Mon Sep 17 00:00:00 2001 From: Tomas Norre Mikkelsen Date: Tue, 6 Feb 2024 21:24:11 +0100 Subject: [PATCH] Remove > from shell readme, to ease copy pasting --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e13b9097..98d584ae 100644 --- a/README.md +++ b/README.md @@ -10,19 +10,19 @@ Exercism exercises in PHP ### All dependencies ```shell -> ./bin/install.sh +./bin/install.sh ``` ### Only tests dependencies ```shell -> ./bin/install-phpunit-9.sh +./bin/install-phpunit-9.sh ``` ### Only style-check dependencies ```shell -> ./bin/install-phpcs.sh +./bin/install-phpcs.sh ``` ## Running Unit Test Suite @@ -30,7 +30,7 @@ Exercism exercises in PHP ### PHPUnit 9 ```shell -> PHPUNIT_BIN="./bin/phpunit-9.phar" ./bin/test.sh +PHPUNIT_BIN="./bin/phpunit-9.phar" ./bin/test.sh ``` ## Running Style Checker @@ -38,7 +38,7 @@ Exercism exercises in PHP ### PSR-12 rules ```shell -> PHPCS_BIN="./bin/phpcs.phar" PHPCS_RULES="./phpcs-php.xml" ./bin/lint.sh +PHPCS_BIN="./bin/phpcs.phar" PHPCS_RULES="./phpcs-php.xml" ./bin/lint.sh ``` ## Contributing