File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ .phpunit.cache /
12.phpunit.result.cache
23composer.lock
34composer.phar
5+ phpunit.xml.bak
46/vendor /
57
68# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
Original file line number Diff line number Diff line change 2121 },
2222 "allow-plugins" : {
2323 "composer/package-versions-deprecated" : true ,
24- "simplesamlphp/composer-module-installer" : true
24+ "simplesamlphp/composer-module-installer" : true ,
25+ "dealerdirect/phpcodesniffer-composer-installer" : true
2526 }
2627 },
2728 "autoload" : {
Original file line number Diff line number Diff line change 1- <?xml version =" 1.0" encoding =" utf-8" ?>
2- <phpunit bootstrap =" tests/bootstrap.php" >
3- <testsuites >
4- <testsuite name =" The project's test suite" >
5- <directory >./vendor/simplesamlphp/simplesamlphp-test-framework/src</directory >
6- <directory >./tests</directory >
7- </testsuite >
8- </testsuites >
9- <filter >
10- <whitelist processUncoveredFilesFromWhitelist =" true" >
11- <directory suffix =" .php" >./lib</directory >
12- </whitelist >
13- </filter >
14- <logging >
15- <log type =" coverage-text" target =" php://stdout" showUncoveredFiles =" true" />
16- <log type =" coverage-html" target =" build/coverage" lowUpperBound =" 35" highLowerBound =" 70" />
17- <log type =" coverage-clover" target =" build/logs/clover.xml" />
18- </logging >
1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" tests/bootstrap.php" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory =" .phpunit.cache" >
3+ <coverage >
4+ <report >
5+ <clover outputFile =" build/logs/clover.xml" />
6+ <html outputDirectory =" build/coverage" lowUpperBound =" 35" highLowerBound =" 70" />
7+ <text outputFile =" php://stdout" showUncoveredFiles =" true" />
8+ </report >
9+ </coverage >
10+ <testsuites >
11+ <testsuite name =" The project's test suite" >
12+ <directory >./vendor/simplesamlphp/simplesamlphp-test-framework/src</directory >
13+ <directory >./tests</directory >
14+ </testsuite >
15+ </testsuites >
16+ <logging />
17+ <source >
18+ <include >
19+ <directory suffix =" .php" >./lib</directory >
20+ </include >
21+ </source >
1922</phpunit >
20-
You can’t perform that action at this time.
0 commit comments