diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0c95c37..d1c5fab 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,13 +14,10 @@ jobs: fail-fast: false matrix: php_version: - - '8.2' - '8.3' dependencies: - 'default' include: - - php_version: '8.2' - dependencies: 'lowest' - php_version: '8.3' dependencies: 'lowest' steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d86b66..7193fe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * [BREAKING] ContentSnippetContentFilter is now an interface, use HtmlPurifierContentFilter for a runtime implementation. The ->filterContent now returns a ContentFilterResult DTO instead of a plain array. +* Drop support for PHP 8.2 * Internal test & config files are now excluded from distribution archives * Upgraded to PHPUnit 11 for internal tests diff --git a/composer.json b/composer.json index 406561a..18879c8 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "require": { "composer/installers": "^1.9", "ezyang/htmlpurifier": "^4.15", - "php": "~8.2.0 || ~8.3.0", + "php": "~8.3.0", "ingenerator/kohana-core": "^4.7", "ingenerator/kohana-extras": "^2.0 || ^3.0", "ingenerator/kohana-view": "^4.4"