fix(installer): Missing gd extension (#1749)

This commit is contained in:
Roman Kelesidis 2025-01-14 09:07:10 +03:00 committed by GitHub
commit a1c519d938
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -58,7 +58,7 @@ and go from there. The documentation will be translated into english in the near
* Apache / nginx
* MySQL 5.5.3 or above / MariaDB 10.0 or above / Percona
* PHP: 8.1 / 8.2 / 8.3
* PHP Extensions: mbstring, bcmath, intl, tidy (optional), xml, xmlwriter
* PHP Extensions: mbstring, gd, bcmath, intl, tidy (optional), xml, xmlwriter
* Crontab (Recommended)
## 💾 Installation

View file

@ -29,7 +29,8 @@ define('CHECK_REQUIREMENTS', [
'intl',
'xml',
'xmlwriter',
'zip'
'zip',
'gd'
],
]);