Skip to content

Commit 0da7dd2

Browse files
ErfanMomeniiiodan
andauthored
Remove prefix from bash snippets
Co-authored-by: Daniel Opitz <odan@users.noreply.github.com>
1 parent 8dea5df commit 0da7dd2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Slim is a PHP micro-framework that helps you quickly write simple yet powerful w
1212
It's recommended that you use [Composer](https://getcomposer.org/) to install Slim.
1313

1414
```bash
15-
$ composer require slim/slim
15+
composer require slim/slim
1616
```
1717

1818
This will install Slim and all required dependencies. Slim requires PHP 7.4 or newer.
@@ -93,7 +93,7 @@ $app->run();
9393

9494
You may quickly test this using the built-in PHP server:
9595
```bash
96-
$ php -S localhost:8000 -t public
96+
php -S localhost:8000 -t public
9797
```
9898

9999
Going to http://localhost:8000/hello/world will now display "Hello, world".
@@ -104,9 +104,9 @@ For more information on how to configure your web server, see the [Documentation
104104
To execute the test suite, you'll need to install all development dependencies.
105105

106106
```bash
107-
$ git clone https://github.com/slimphp/Slim
108-
$ composer install
109-
$ composer test
107+
git clone https://github.com/slimphp/Slim
108+
composer install
109+
composer test
110110
```
111111

112112
## Contributing

0 commit comments

Comments
 (0)