Skip to content

Commit a79e641

Browse files
Start development of next major version
1 parent 4bb10b0 commit a79e641

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: "CI"
88

99
env:
10-
COMPOSER_ROOT_VERSION: "5.0.x-dev"
10+
COMPOSER_ROOT_VERSION: "6.0.x-dev"
1111

1212
permissions:
1313
contents: read
@@ -61,7 +61,6 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
php-version:
64-
- "8.2"
6564
- "8.3"
6665
- "8.4"
6766
- "8.5"

ChangeLog.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [6.0.0] - 2025-02-07
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.2
10+
511
## [5.0.1] - 2024-07-03
612

713
### Changed
@@ -59,6 +65,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
5965

6066
* This component is no longer supported on PHP 7.1 and PHP 7.2
6167

68+
[6.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/5.0...main
6269
[5.0.1]: https://github.com/sebastianbergmann/php-invoker/compare/5.0.1...5.0.1
6370
[5.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/4.0...5.0.0
6471
[4.0.0]: https://github.com/sebastianbergmann/php-invoker/compare/3.1.1...4.0.0

composer.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,21 @@
1818
"issues": "https://github.com/sebastianbergmann/php-invoker/issues",
1919
"security": "https://github.com/sebastianbergmann/php-invoker/security/policy"
2020
},
21+
"minimum-stability": "dev",
2122
"prefer-stable": true,
2223
"config": {
2324
"platform": {
24-
"php": "8.2.0"
25+
"php": "8.3.0"
2526
},
2627
"optimize-autoloader": true,
2728
"sort-packages": true
2829
},
2930
"require": {
30-
"php": ">=8.2"
31+
"php": ">=8.3"
3132
},
3233
"require-dev": {
3334
"ext-pcntl": "*",
34-
"phpunit/phpunit": "^11.3"
35+
"phpunit/phpunit": "^12.0-dev"
3536
},
3637
"autoload": {
3738
"classmap": [
@@ -48,7 +49,7 @@
4849
},
4950
"extra": {
5051
"branch-alias": {
51-
"dev-main": "5.0-dev"
52+
"dev-main": "6.0-dev"
5253
}
5354
}
5455
}

0 commit comments

Comments
 (0)