From f85dcc965ebb607955737853caf7755f2b0fbc19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=A4tzig?= Date: Fri, 7 Jan 2022 01:44:56 +0100 Subject: [PATCH] Add PHP extension JSON as dependency --- README.md | 1 + composer.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b801e8e..e12199db 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ Initially released in December 2012, the PHP IMAP Mailbox is a powerful and open * PHP `iconv` extension must be present; so make sure this line is active in your php.ini: `extension=php_iconv.dll` * PHP `imap` extension must be present; so make sure this line is active in your php.ini: `extension=php_imap.dll` * PHP `mbstring` extension must be present; so make sure this line is active in your php.ini: `extension=php_mbstring.dll` +* PHP `json` extension must be present; so make sure this line is active in your php.ini: `extension=json.dll` ### Installation by Composer diff --git a/composer.json b/composer.json index 5e897814..77176bdd 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,8 @@ "ext-fileinfo": "*", "ext-iconv": "*", "ext-imap": "*", - "ext-mbstring": "*" + "ext-mbstring": "*", + "ext-json": "*" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.4",