File tree Expand file tree Collapse file tree 4 files changed +21
-9
lines changed Expand file tree Collapse file tree 4 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ language: php
33dist : bionic
44
55php :
6- - 7.2
76 - 7.3
87 - 7.4
98
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+ ## [ 8.0.0] - 2020-02-07
6+
7+ ### Removed
8+
9+ * This component is no longer supported on PHP 7.2
10+
511## [ 7.0.10] - 2019-11-20
612
713### Fixed
@@ -112,6 +118,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
112118* Class names are now abbreviated (unqualified name shown, fully qualified name shown on hover) in the file view of the HTML report
113119* Update HTML report to Bootstrap 4
114120
121+ [ 8.0.0 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.10...master
115122[ 7.0.10 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.9...7.0.10
116123[ 7.0.9 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.8...7.0.9
117124[ 7.0.8 ] : https://github.com/sebastianbergmann/php-code-coverage/compare/7.0.7...7.0.8
Original file line number Diff line number Diff line change 2020 "issues" : " https://github.com/sebastianbergmann/php-code-coverage/issues"
2121 },
2222 "config" : {
23+ "platform" : {
24+ "php" : " 7.3.0"
25+ },
2326 "optimize-autoloader" : true ,
2427 "sort-packages" : true
2528 },
2629 "prefer-stable" : true ,
2730 "minimum-stability" : " dev" ,
2831 "require" : {
29- "php" : " ^7.2 " ,
32+ "php" : " ^7.3 " ,
3033 "ext-dom" : " *" ,
3134 "ext-xmlwriter" : " *" ,
3235 "phpunit/php-file-iterator" : " ^3.0" ,
5659 },
5760 "extra" : {
5861 "branch-alias" : {
59- "dev-master" : " 7 .0-dev"
62+ "dev-master" : " 8 .0-dev"
6063 }
6164 }
6265}
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/6 .0/phpunit.xsd"
3+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9 .0/phpunit.xsd"
44 bootstrap =" tests/bootstrap.php"
5- backupGlobals =" false"
5+ executionOrder =" depends,defects"
6+ beStrictAboutOutputDuringTests =" true"
7+ beStrictAboutTodoAnnotatedTests =" true"
68 verbose =" true" >
7- <testsuite name =" default" >
8- <directory suffix =" Test.php" >tests/tests</directory >
9- </testsuite >
9+ <testsuites >
10+ <testsuite name =" default" >
11+ <directory suffix =" Test.php" >tests/tests</directory >
12+ </testsuite >
13+ </testsuites >
1014
1115 <filter >
1216 <whitelist processUncoveredFilesFromWhitelist =" true" >
1822 <ini name =" serialize_precision" value =" 14" />
1923 </php >
2024</phpunit >
21-
You can’t perform that action at this time.
0 commit comments