Start development of next major version

This commit is contained in:
Sebastian Bergmann 2025-12-31 17:07:52 +01:00
parent e0408a38b0
commit 2f6cbc5b83
No known key found for this signature in database
GPG Key ID: 4AA394086372C20A
3 changed files with 14 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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"
}
}
}