Start development of next major version
This commit is contained in:
parent
e0408a38b0
commit
2f6cbc5b83
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue