From eeb97cdaf2c368cf44bf1f895d659f24974f320d Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Wed, 10 Jun 2026 15:06:17 +0300 Subject: [PATCH] Remove unused DOM extension requirement --- CHANGELOG.md | 1 + README.md | 1 - composer.json | 1 - 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9926434..070d6c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Enh #163: Explicitly import classes, functions, and constants in "use" section (@mspirkov) - Bug #164: Fix missing items in stack trace HTML output when handling a PHP error (@vjik) - Bug #166: Fix broken link to error handling guide (@vjik) +- Bug #176: Remove unused `ext-dom` dependency (@samdark) - Chg #170: Make all parameters of `ErrorException` constructor required (@vjik) - New #171: Add `$traceFileMap` parameter to `HtmlRenderer` for mapping file paths in trace links (@WarLikeLaux) diff --git a/README.md b/README.md index 46bfe7e..bd60938 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ The package provides advanced error handling. The features are: ## Requirements - PHP 8.1 - 8.5. -- `DOM` PHP extension. - `mbstring` PHP extension. ## Installation diff --git a/composer.json b/composer.json index 745b7ad..268b6a5 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,6 @@ ], "require": { "php": "8.1 - 8.5", - "ext-dom": "*", "ext-mbstring": "*", "alexkart/curl-builder": "^1.0", "cebe/markdown": "^1.2",