File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes are documented in this file using the [ Keep a CHANGELOG] ( http://keepachangelog.com/ ) principles.
4
4
5
+ ## [ 10.0.0] - 2021-02-05
6
+
7
+ ### Removed
8
+
9
+ * This component is no longer supported on PHP 7.3
10
+
5
11
## [ 9.2.5] - 2020-11-28
6
12
7
13
### Fixed
@@ -318,6 +324,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
318
324
* Class names are now abbreviated (unqualified name shown, fully qualified name shown on hover) in the file view of the HTML report
319
325
* Update HTML report to Bootstrap 4
320
326
327
+ [ 10.0.0 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2...10.0.0
321
328
[ 9.2.5 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.4...9.2.5
322
329
[ 9.2.4 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.3...9.2.4
323
330
[ 9.2.3 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.2...9.2.3
Original file line number Diff line number Diff line change 21
21
},
22
22
"config" : {
23
23
"platform" : {
24
- "php" : " 7.3 .0"
24
+ "php" : " 7.4 .0"
25
25
},
26
26
"optimize-autoloader" : true ,
27
27
"sort-packages" : true
28
28
},
29
+ "minimum-stability" : " dev" ,
29
30
"prefer-stable" : true ,
30
31
"require" : {
31
- "php" : " >=7.3 " ,
32
+ "php" : " >=7.4 " ,
32
33
"ext-dom" : " *" ,
33
34
"ext-libxml" : " *" ,
34
35
"ext-xmlwriter" : " *" ,
43
44
"theseer/tokenizer" : " ^1.2.0"
44
45
},
45
46
"require-dev" : {
46
- "phpunit/phpunit" : " ^9.3 "
47
+ "phpunit/phpunit" : " ^10.0 "
47
48
},
48
49
"suggest" : {
49
50
"ext-pcov" : " *" ,
62
63
},
63
64
"extra" : {
64
65
"branch-alias" : {
65
- "dev-master" : " 9.2 -dev"
66
+ "dev-master" : " 10.0 -dev"
66
67
}
67
68
}
68
69
}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ final class Version
22
22
public static function id (): string
23
23
{
24
24
if (self ::$ version === null ) {
25
- self ::$ version = (new VersionId ('9.2.5 ' , dirname (__DIR__ )))->getVersion ();
25
+ self ::$ version = (new VersionId ('10.0 ' , dirname (__DIR__ )))->getVersion ();
26
26
}
27
27
28
28
return self ::$ version ;
You can’t perform that action at this time.
0 commit comments