From a9eff5d1add0b6e76d472fe62410b8b81b7fa119 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 20 Mar 2024 07:24:19 +0000 Subject: [PATCH] update php version --- setup/install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/install.md b/setup/install.md index 8991eb4..5bfa92e 100755 --- a/setup/install.md +++ b/setup/install.md @@ -56,7 +56,7 @@ On Windows php should already be installed with the web servers mentioned above The following extensions are recommended and sometimes even mandatory: ```sh -sudo apt-get install php8.1 php8.1-dev php8.1-cli php8.1-common php8.1-mysql php8.1-pgsql php8.1-xdebug php8.1-opcache php8.1-pdo php8.1-sqlite php8.1-mbstring php8.1-curl php8.1-imap php8.1-bcmath php8.1-zip php8.1-dom php8.1-xml php8.1-phar php8.1-gd php-pear sqlite3 +sudo apt-get install php8.2 php8.2-dev php8.2-cli php8.2-common php8.2-mysql php8.2-pgsql php8.2-xdebug php8.2-opcache php8.2-pdo php8.2-sqlite php8.2-mbstring php8.2-curl php8.2-imap php8.2-bcmath php8.2-zip php8.2-dom php8.2-xml php8.2-phar php8.2-gd php-pear sqlite3 ``` ## Software @@ -176,7 +176,7 @@ extension=mbstring.so // Example in case you are installing on Linux If the extension is not installed and not activated you can alternatively run the following commands on Linux (just as example): ```sh -sudo apt-get install php8.1-mbstring +sudo apt-get install php8.2-mbstring sudo phpenmod mbstring ```