update php version

This commit is contained in:
Dennis Eichhorn 2024-03-20 07:24:19 +00:00
parent 26effce983
commit a9eff5d1ad

View File

@ -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
```