diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2022-11-14 15:02:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 15:02:44 +0100 |
commit | 570503b7f12df7d12af29905da97131b032c7da0 (patch) | |
tree | 0bc4f9a8761e96dc1ebe79f04533a4dbb568349e /README.md | |
parent | acf459429b128053ef70934d3152f4b211a14396 (diff) | |
download | freshrss-570503b7f12df7d12af29905da97131b032c7da0.tar.gz freshrss-570503b7f12df7d12af29905da97131b032c7da0.zip |
Require PHP 7.2+ (#4848)
Drop PHP 7.0- as planned https://github.com/FreshRSS/FreshRSS/discussions/3321#discussioncomment-835704
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ FreshRSS comes with absolutely no warranty. * Light server running Linux or Windows * It even works on Raspberry Pi 1 with response time under a second (tested with 150 feeds, 22k articles) * A web server: Apache2 (recommended), nginx, lighttpd (not tested on others) -* PHP 7.0+ +* PHP 7.2+ * Required extensions: [cURL](https://www.php.net/curl), [DOM](https://www.php.net/dom), [JSON](https://www.php.net/json), [XML](https://www.php.net/xml), [session](https://www.php.net/session), [ctype](https://www.php.net/ctype), and [PDO_MySQL](https://www.php.net/pdo-mysql) or [PDO_SQLite](https://www.php.net/pdo-sqlite) or [PDO_PGSQL](https://www.php.net/pdo-pgsql) * Recommended extensions: [GMP](https://www.php.net/gmp) (for API access on 32-bit platforms), [IDN](https://www.php.net/intl.idn) (for Internationalized Domain Names), [mbstring](https://www.php.net/mbstring) (for Unicode strings), [iconv](https://www.php.net/iconv) (for charset conversion), [ZIP](https://www.php.net/zip) (for import/export), [zlib](https://www.php.net/zlib) (for compressed feeds) * MySQL 5.5.3+ or MariaDB equivalent, or SQLite 3.7.4+, or PostgreSQL 9.5+ |