File tree Expand file tree Collapse file tree 2 files changed +11
-23
lines changed Expand file tree Collapse file tree 2 files changed +11
-23
lines changed Original file line number Diff line number Diff line change 1616 "nikic/php-parser" : " ^5"
1717 },
1818 "require-dev" : {
19- "phpunit/phpunit" : " ^9.6 " ,
19+ "phpunit/phpunit" : " ^10 " ,
2020 "php-coveralls/php-coveralls" : " ^2.1" ,
2121 "squizlabs/php_codesniffer" : " ^3.4"
2222 },
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" ?>
2- <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3- xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd"
4- bootstrap =" vendor/autoload.php"
5- colors =" true"
6- backupGlobals =" false"
7- backupStaticAttributes =" false"
8- beStrictAboutChangesToGlobalState =" true"
9- beStrictAboutOutputDuringTests =" true"
10- beStrictAboutTestsThatDoNotTestAnything =" true"
11- beStrictAboutTodoAnnotatedTests =" true"
12- failOnRisky =" true"
13- failOnWarning =" true"
14- convertErrorsToExceptions =" true"
15- convertNoticesToExceptions =" true"
16- convertWarningsToExceptions =" true"
17- >
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap =" vendor/autoload.php" colors =" true" backupGlobals =" false" beStrictAboutChangesToGlobalState =" true" beStrictAboutOutputDuringTests =" true" beStrictAboutTestsThatDoNotTestAnything =" true" failOnRisky =" true" failOnWarning =" true" cacheDirectory =" .phpunit.cache" backupStaticProperties =" false" >
183 <testsuites >
194 <testsuite name =" Test suite" >
205 <directory >./tests/</directory >
216 </testsuite >
227 </testsuites >
238 <coverage >
24- <include >
25- <directory suffix =" .php" >./src</directory >
26- </include >
27- <exclude >
28- <file >src/Type/Php/ReplaceSafeFunctionsDynamicReturnTypeExtension.php</file >
29- </exclude >
309 <report >
3110 <clover outputFile =" build/logs/clover.xml" />
3211 <html outputDirectory =" build/coverage" />
3312 <text outputFile =" php://stdout" showUncoveredFiles =" true" showOnlySummary =" true" />
3413 </report >
3514 </coverage >
15+ <source >
16+ <include >
17+ <directory suffix =" .php" >./src</directory >
18+ </include >
19+ <exclude >
20+ <!-- type checking doesn't count towards coverage for some reason -->
21+ <directory >src/Type/Php/</directory >
22+ </exclude >
23+ </source >
3624</phpunit >
You can’t perform that action at this time.
0 commit comments