Skip to content

Commit ecaca17

Browse files
Start development of next major version
1 parent cbc3baf commit ecaca17

File tree

4 files changed

+23
-46
lines changed

4 files changed

+23
-46
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
name: CI
88

99
env:
10-
COMPOSER_ROOT_VERSION: 12.5.x-dev
10+
COMPOSER_ROOT_VERSION: 13.0.x-dev
1111
PHP_VERSION: 8.4
1212

1313
jobs:
@@ -106,7 +106,6 @@ jobs:
106106
- windows-latest
107107

108108
php-version:
109-
- 8.3
110109
- 8.4
111110
- 8.5
112111
- 8.6

ChangeLog-12.5.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

ChangeLog-13.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ChangeLog
2+
3+
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
4+
5+
## [13.0.0] - 2026-02-06
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.3
10+
11+
[13.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/12.5...main

composer.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,28 +22,29 @@
2222
},
2323
"config": {
2424
"platform": {
25-
"php": "8.3.0"
25+
"php": "8.4.1"
2626
},
2727
"optimize-autoloader": true,
2828
"sort-packages": true
2929
},
30+
"minimum-stability": "dev",
3031
"prefer-stable": true,
3132
"require": {
32-
"php": ">=8.3",
33+
"php": ">=8.4",
3334
"ext-dom": "*",
3435
"ext-libxml": "*",
3536
"ext-xmlwriter": "*",
3637
"nikic/php-parser": "^5.7.0",
37-
"phpunit/php-file-iterator": "^6.0",
38-
"phpunit/php-text-template": "^5.0",
39-
"sebastian/complexity": "^5.0",
40-
"sebastian/environment": "^8.0.3",
41-
"sebastian/lines-of-code": "^4.0",
42-
"sebastian/version": "^6.0",
38+
"phpunit/php-file-iterator": "^7.0",
39+
"phpunit/php-text-template": "^6.0",
40+
"sebastian/complexity": "^6.0",
41+
"sebastian/environment": "^9.0",
42+
"sebastian/lines-of-code": "^5.0",
43+
"sebastian/version": "^7.0",
4344
"theseer/tokenizer": "^2.0.1"
4445
},
4546
"require-dev": {
46-
"phpunit/phpunit": "^12.5.1"
47+
"phpunit/phpunit": "^13.0"
4748
},
4849
"suggest": {
4950
"ext-pcov": "PHP extension that provides line coverage",
@@ -61,7 +62,7 @@
6162
},
6263
"extra": {
6364
"branch-alias": {
64-
"dev-main": "12.5.x-dev"
65+
"dev-main": "13.0.x-dev"
6566
}
6667
}
6768
}

0 commit comments

Comments
 (0)