File tree 3 files changed +23
-26
lines changed
3 files changed +23
-26
lines changed Original file line number Diff line number Diff line change 10
10
},
11
11
"require-dev" : {
12
12
"composer-runtime-api" : " ^2.0.0" ,
13
- "phpunit/phpunit" : " ^9" ,
13
+ "phpunit/phpunit" : " ^9 | ^10 " ,
14
14
"squizlabs/php_codesniffer" : " >=3.6" ,
15
15
"sebastian/comparator" : " >=4" ,
16
16
"sebastian/diff" : " >=4" ,
Original file line number Diff line number Diff line change 1
- <?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
4
- colors =" true"
5
- convertErrorsToExceptions =" true"
6
- convertNoticesToExceptions =" true"
7
- convertWarningsToExceptions =" true"
8
- stopOnFailure =" false"
9
- bootstrap =" vendor/autoload.php"
10
- >
11
- <testsuites >
12
- <testsuite name =" FileEye Testing Suite" >
13
- <directory suffix =" Test.php" >./tests/</directory >
14
- </testsuite >
15
- </testsuites >
16
- <!-- Filter for coverage reports. -->
17
- <filter >
18
- <whitelist >
19
- <directory suffix =" .php" >./src/</directory >
20
- <exclude >
21
- <directory suffix =" .php" >./src/Command/</directory >
22
- </exclude >
23
- </whitelist >
24
- </filter >
1
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ backupGlobals =" false"
3
+ colors =" true"
4
+ stopOnFailure =" false"
5
+ bootstrap =" vendor/autoload.php"
6
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.0/phpunit.xsd"
7
+ cacheDirectory =" .phpunit.cache"
8
+ backupStaticProperties =" false" >
9
+ <coverage >
10
+ <include >
11
+ <directory suffix =" .php" >./src/</directory >
12
+ </include >
13
+ <exclude >
14
+ <directory suffix =" .php" >./src/Command/</directory >
15
+ </exclude >
16
+ </coverage >
17
+ <testsuites >
18
+ <testsuite name =" FileEye Testing Suite" >
19
+ <directory suffix =" Test.php" >./tests/</directory >
20
+ </testsuite >
21
+ </testsuites >
25
22
</phpunit >
Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ public function testAddExtensionToAlias(): void
349
349
*
350
350
* @return array<string,array<string>>
351
351
*/
352
- public function malformedTypeProvider (): array
352
+ public static function malformedTypeProvider (): array
353
353
{
354
354
return [
355
355
'empty string ' => ['' ],
You can’t perform that action at this time.
0 commit comments