File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments