diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 007af6f..dbc9c77 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,7 +7,7 @@ on: name: CI env: - COMPOSER_ROOT_VERSION: 7.0.x-dev + COMPOSER_ROOT_VERSION: 8.0.x-dev PHP_VERSION: 8.4 permissions: @@ -89,7 +89,6 @@ jobs: fail-fast: false matrix: php-version: - - 8.3 - 8.4 - 8.5 - 8.6 diff --git a/ChangeLog.md b/ChangeLog.md index 3d6ce31..537ce14 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,12 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. +## [8.0.0] - 2026-02-06 + +### Removed + +* This component is no longer supported on PHP 8.3 + ## [7.0.2] - 2025-09-24 ### Changed @@ -20,6 +26,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt * This component is no longer supported on PHP 8.2 +[8.0.0]: https://github.com/sebastianbergmann/exporter/compare/7.0...main [7.0.2]: https://github.com/sebastianbergmann/exporter/compare/7.0.1...7.0.2 [7.0.1]: https://github.com/sebastianbergmann/exporter/compare/7.0.0...7.0.1 [7.0.0]: https://github.com/sebastianbergmann/exporter/compare/6.3...7.0.0 diff --git a/composer.json b/composer.json index 1430aa1..735a85f 100644 --- a/composer.json +++ b/composer.json @@ -32,19 +32,20 @@ }, "config": { "platform": { - "php": "8.3.0" + "php": "8.4.1" }, "optimize-autoloader": true, "sort-packages": true }, + "minimum-stability": "dev", "prefer-stable": true, "require": { - "php": ">=8.3", + "php": ">=8.4", "ext-mbstring": "*", - "sebastian/recursion-context": "^7.0" + "sebastian/recursion-context": "^8.0" }, "require-dev": { - "phpunit/phpunit": "^12.0" + "phpunit/phpunit": "^13.0" }, "autoload": { "classmap": [ @@ -58,7 +59,7 @@ }, "extra": { "branch-alias": { - "dev-main": "7.0-dev" + "dev-main": "8.0-dev" } } }