From 4df65209a1fa91b8d981af0ecdd171596606d8f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 7 Dec 2016 15:48:26 +0100 Subject: [PATCH] Add information about required and suggested extensions to composer.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #12785 Signed-off-by: Michal Čihař --- ChangeLog | 1 + composer.json | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 21f5e6e930..d76afc97ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,6 +14,7 @@ phpMyAdmin - ChangeLog - issue #12780 Format button replaces all text with blank spaces - issue #12786 Fixed database searching - issue #12792 Fixed javascript error on new version link +- issue #12785 Add information about required and suggested extensions to composer.json 4.6.5.2 (2016-12-05) - issue #12765 Fixed SQL export with newlines diff --git a/composer.json b/composer.json index 086b84e496..58da256904 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,19 @@ }, "non-feature-branches": ["RELEASE_.*"], "require": { - "php": ">=5.5.0" + "php": ">=5.5.0", + "ext-mbstring": "*", + "ext-mysqli": "*", + "ext-xml": "*", + "ext-json": "*" + }, + "suggest": { + "ext-curl": "Updates checking", + "ext-opcache": "Better performance", + "ext-zlib": "For gz import and export", + "ext-bz2": "For bzip2 import and export", + "ext-zip": "For zip import and export", + "ext-gd2": "For image transformations" }, "require-dev": { "satooshi/php-coveralls": "~0.6",