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 22
33All notable changes are documented in this file using the [ Keep a CHANGELOG] ( http://keepachangelog.com/ ) principles.
44
5+ ## [ 10.0.0] - 2021-02-05
6+
7+ ### Removed
8+
9+ * This component is no longer supported on PHP 7.3
10+
511## [ 9.2.5] - 2020-11-28
612
713### Fixed
@@ -318,6 +324,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
318324* Class names are now abbreviated (unqualified name shown, fully qualified name shown on hover) in the file view of the HTML report
319325* Update HTML report to Bootstrap 4
320326
327+ [ 10.0.0 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2...10.0.0
321328[ 9.2.5 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.4...9.2.5
322329[ 9.2.4 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/9.2.3...9.2.4
323330[ 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 2121 },
2222 "config" : {
2323 "platform" : {
24- "php" : " 7.3 .0"
24+ "php" : " 7.4 .0"
2525 },
2626 "optimize-autoloader" : true ,
2727 "sort-packages" : true
2828 },
29+ "minimum-stability" : " dev" ,
2930 "prefer-stable" : true ,
3031 "require" : {
31- "php" : " >=7.3 " ,
32+ "php" : " >=7.4 " ,
3233 "ext-dom" : " *" ,
3334 "ext-libxml" : " *" ,
3435 "ext-xmlwriter" : " *" ,
4344 "theseer/tokenizer" : " ^1.2.0"
4445 },
4546 "require-dev" : {
46- "phpunit/phpunit" : " ^9.3 "
47+ "phpunit/phpunit" : " ^10.0 "
4748 },
4849 "suggest" : {
4950 "ext-pcov" : " *" ,
6263 },
6364 "extra" : {
6465 "branch-alias" : {
65- "dev-master" : " 9.2 -dev"
66+ "dev-master" : " 10.0 -dev"
6667 }
6768 }
6869}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ final class Version
2222 public static function id (): string
2323 {
2424 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 ();
2626 }
2727
2828 return self ::$ version ;
You can’t perform that action at this time.
0 commit comments