From 73e38269ed9dcc4047019394e90c5e90cf9f7e0b Mon Sep 17 00:00:00 2001 From: Ali Yousefi Date: Mon, 21 Oct 2024 12:43:21 +0330 Subject: [PATCH] =?UTF-8?q?Update:=20add=20ext-json=20to=20composer.json?= =?UTF-8?q?=20to=20ensure=20JSON=20extension=20availa=E2=80=A6=20(#759)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update: add ext-json to composer.json to ensure JSON extension availability * docs: add changelog entry --------- Co-authored-by: Danny van der Sluijs --- CHANGELOG.md | 1 + composer.json | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82b0e58..f24a0cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bump to minimum PHP 7.2 ([#746](https://github.com/jsonrainbow/json-schema/pull/746)) - Replace traditional syntax array with short syntax array ([#747](https://github.com/jsonrainbow/json-schema/pull/747)) - Increase phpstan level to 8 with baseline to swallow existing errors ([#673](https://github.com/jsonrainbow/json-schema/pull/673)) +- Add ext-json to composer.json to ensure JSON extension available ([#759](https://github.com/jsonrainbow/json-schema/pull/759)) ## [6.0.0] - 2024-07-30 ### Added diff --git a/composer.json b/composer.json index 9a7b124..516fb8a 100644 --- a/composer.json +++ b/composer.json @@ -28,6 +28,7 @@ ], "require": { "php": "^7.2 || ^8.0", + "ext-json": "*", "marc-mabe/php-enum":"^2.0 || ^3.0 || ^4.0", "icecave/parity": "^3.0" },