File tree Expand file tree Collapse file tree 5 files changed +29
-27
lines changed Expand file tree Collapse file tree 5 files changed +29
-27
lines changed Original file line number Diff line number Diff line change 16
16
fail-fast : false
17
17
matrix :
18
18
php-version :
19
- - " 8.1"
20
19
- " 8.2"
21
20
- " 8.3"
22
21
Original file line number Diff line number Diff line change 1
1
/.idea /
2
- /.phpunit.result. cache
2
+ /.phpunit.cache /
3
3
/bin /
4
4
/composer.lock
5
- /custom.task.properties
6
- /custom.type.properties
7
5
/doc /
8
6
/test /coverage.xml
9
- /test /report
10
- /vendor /
7
+ /test /report /
8
+ /vendor /
Original file line number Diff line number Diff line change 7
7
],
8
8
"license" : " MIT" ,
9
9
"require" : {
10
- "php" : " >=8.1 "
10
+ "php" : " >=8.2 "
11
11
},
12
12
"minimum-stability" : " dev" ,
13
13
"prefer-stable" : true ,
14
14
"require-dev" : {
15
- "phing/phing" : " ^3.0.0-RC4 " ,
16
- "phpunit/phpunit" : " ^9 .5.0 "
15
+ "phing/phing" : " ^3.0.0-RC6 " ,
16
+ "phpunit/phpunit" : " ^10 .5.10 "
17
17
},
18
18
"autoload" : {
19
19
"psr-4" : {
Original file line number Diff line number Diff line change 1
- <phpunit bootstrap =" test/bootstrap.php" >
2
- <testsuites >
3
- <testsuite name =" Tests" >
4
- <directory >test</directory >
5
- </testsuite >
6
- </testsuites >
7
- <filter >
8
- <whitelist processUncoveredFilesFromWhitelist =" true" >
9
- <directory suffix =" .php" >src</directory >
10
- <exclude >
11
- <directory suffix =" .php" >vendor/setbased</directory >
12
- </exclude >
13
- </whitelist >
14
- </filter >
15
- <logging >
16
- <log type =" coverage-html" target =" test/report" />
17
- <log type =" coverage-clover" target =" test/coverage.xml" />
18
- </logging >
1
+ <?xml version =" 1.0" ?>
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" test/bootstrap.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory =" .phpunit.cache" >
3
+ <coverage >
4
+ <report >
5
+ <clover outputFile =" test/coverage.xml" />
6
+ <html outputDirectory =" test/report" />
7
+ </report >
8
+ </coverage >
9
+ <testsuites >
10
+ <testsuite name =" Tests" >
11
+ <directory >test</directory >
12
+ </testsuite >
13
+ </testsuites >
14
+ <logging />
15
+ <source >
16
+ <include >
17
+ <directory suffix =" .php" >src</directory >
18
+ </include >
19
+ <exclude >
20
+ <directory suffix =" .php" >vendor/setbased</directory >
21
+ </exclude >
22
+ </source >
19
23
</phpunit >
Original file line number Diff line number Diff line change 1
1
<?php
2
2
declare (strict_types=1 );
3
3
4
+ error_reporting (E_ALL );
4
5
date_default_timezone_set ( 'Europe/Amsterdam ' );
5
6
6
7
require_once ( __DIR__ .'/../vendor/autoload.php ' );
You can’t perform that action at this time.
0 commit comments