Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Slim is a PHP micro-framework that helps you quickly write simple yet powerful w
It's recommended that you use [Composer](https://getcomposer.org/) to install Slim.

```bash
$ composer require slim/slim
composer require slim/slim
```

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

You may quickly test this using the built-in PHP server:
```bash
$ php -S localhost:8000 -t public
php -S localhost:8000 -t public
```

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

```bash
$ git clone https://github.com/slimphp/Slim
$ composer install
$ composer test
git clone https://github.com/slimphp/Slim
composer install
composer test
```

## Contributing
Expand Down
Loading