Skip to content

Commit 6c4fdfc

Browse files
Start development of php-code-coverage 12.0
1 parent c4ba7f2 commit 6c4fdfc

File tree

5 files changed

+18
-74
lines changed

5 files changed

+18
-74
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: "11.0.x-dev"
10+
COMPOSER_ROOT_VERSION: "12.0.x-dev"
1111

1212
jobs:
1313
coding-guidelines:
@@ -70,7 +70,6 @@ jobs:
7070
- windows-latest
7171

7272
php-version:
73-
- "8.2"
7473
- "8.3"
7574
- "8.4"
7675

ChangeLog-11.0.md

-67
This file was deleted.

ChangeLog-12.0.md

+11
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+
## [12.0.0] - 2025-02-07
6+
7+
### Removed
8+
9+
* This component is no longer supported on PHP 8.2
10+
11+
[12.0.0]: https://github.com/sebastianbergmann/php-code-coverage/compare/11.0...main

composer.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@
2222
},
2323
"config": {
2424
"platform": {
25-
"php": "8.2.0"
25+
"php": "8.3.0"
2626
},
2727
"optimize-autoloader": true,
2828
"sort-packages": true
2929
},
30+
"minimum-stability": "dev",
3031
"prefer-stable": true,
3132
"require": {
32-
"php": ">=8.2",
33+
"php": ">=8.3",
3334
"ext-dom": "*",
3435
"ext-libxml": "*",
3536
"ext-xmlwriter": "*",
@@ -44,7 +45,7 @@
4445
"theseer/tokenizer": "^1.2.3"
4546
},
4647
"require-dev": {
47-
"phpunit/phpunit": "^11.4.1"
48+
"phpunit/phpunit": "^12.0-dev"
4849
},
4950
"suggest": {
5051
"ext-pcov": "PHP extension that provides line coverage",
@@ -62,7 +63,7 @@
6263
},
6364
"extra": {
6465
"branch-alias": {
65-
"dev-main": "11.0.x-dev"
66+
"dev-main": "12.0.x-dev"
6667
}
6768
}
6869
}

src/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class Version
1919
public static function id(): string
2020
{
2121
if (self::$version === '') {
22-
self::$version = (new VersionId('11.0.7', dirname(__DIR__)))->asString();
22+
self::$version = (new VersionId('12.0', dirname(__DIR__)))->asString();
2323
}
2424

2525
return self::$version;

0 commit comments

Comments
 (0)