Skip to content

Commit 8e940c5

Browse files
authored
chore(docs): including missing prerequisites.
1 parent 0e8ff78 commit 8e940c5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ It leverages the [amphp](https://github.com/amphp/amp) platform to make your pro
3131
3232
# Prerequisites
3333

34-
You will need at least [php 8.3](https://www.php.net/downloads.php) and `inotify-tools` for [watch mode](#watch-mode).
34+
You will need at least [php 8.3](https://www.php.net/downloads.php), `ext-mbstring`, `ext-dom` and `inotify-tools` for [watch mode](#watch-mode).\
35+
Although optional, I also recommend you install `ext-curl` to speed http requests in php.
3536

3637
```sh
37-
sudo apt install inotify-tools
38+
sudo apt install php-mbstring # this contains ext-mbstring
39+
sudo apt install php-xml # this contains ext-dom
40+
sudo apt install php-curl # this will speed up project creation and http requests in general
41+
sudo apt install inotify-tools # this allows you to use watch mode (read below)
3842
```
3943

4044
# Get started

0 commit comments

Comments
 (0)