File tree Expand file tree Collapse file tree 3 files changed +21
-19
lines changed Expand file tree Collapse file tree 3 files changed +21
-19
lines changed Original file line number Diff line number Diff line change 2
2
/composer.phar
3
3
/composer.lock
4
4
/demo
5
+ .phpunit.result.cache
Original file line number Diff line number Diff line change 17
17
"require" : {
18
18
"php" : " >=7.2" ,
19
19
"ext-json" : " *" ,
20
- "psr/log" : " ^1.1"
20
+ "psr/log" : " ^1.1 | ^2.0 | ^3.0 "
21
21
},
22
22
"require-dev" : {
23
- "phpunit/phpunit" : " ^8.0 " ,
24
- "mnapoli/hard-mode" : " ^0.1.1 " ,
23
+ "phpunit/phpunit" : " ^9.5 " ,
24
+ "mnapoli/hard-mode" : " ^0.3.0 " ,
25
25
"mnapoli/pretty" : " ^1.0" ,
26
- "phpstan/phpstan" : " ^0.11.2"
26
+ "phpstan/phpstan" : " ^1.0"
27
+ },
28
+ "config" : {
29
+ "allow-plugins" : {
30
+ "dealerdirect/phpcodesniffer-composer-installer" : false
31
+ }
27
32
}
28
33
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <phpunit colors =" true"
3
- bootstrap =" ./vendor/autoload.php" >
4
-
5
- <testsuites >
6
- <testsuite name =" Test suite" >
7
- <directory >./tests/</directory >
8
- </testsuite >
9
- </testsuites >
10
-
11
- <filter >
12
- <whitelist processUncoveredFilesFromWhitelist =" true" >
13
- <directory suffix =" .php" >src</directory >
14
- </whitelist >
15
- </filter >
16
-
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" colors =" true" bootstrap =" ./vendor/autoload.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3
+ <coverage processUncoveredFiles =" true" >
4
+ <include >
5
+ <directory suffix =" .php" >src</directory >
6
+ </include >
7
+ </coverage >
8
+ <testsuites >
9
+ <testsuite name =" Test suite" >
10
+ <directory >./tests/</directory >
11
+ </testsuite >
12
+ </testsuites >
17
13
</phpunit >
You can’t perform that action at this time.
0 commit comments