PluginProbe
Authorizer / 3.15.3
Authorizer v3.15.3
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
authorizer / vendor / league / oauth2-github / phpunit.xml

phpunit.xml in Authorizer 3.15.3, at vendor/league/oauth2-github/phpunit.xml

38 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit backupGlobals="false"
3 backupStaticAttributes="false"
4 bootstrap="vendor/autoload.php"
5 colors="true"
6 convertErrorsToExceptions="true"
7 convertNoticesToExceptions="true"
8 convertWarningsToExceptions="true"
9 processIsolation="false"
10 stopOnFailure="false"
11 syntaxCheck="false"
12 >
13 <logging>
14 <log type="coverage-html"
15 target="./build/coverage/html"
16 charset="UTF-8"
17 highlight="false"
18 lowUpperBound="35"
19 highLowerBound="70"/>
20 <log type="coverage-clover"
21 target="./build/coverage/log/coverage.xml"/>
22 </logging>
23 <testsuites>
24 <testsuite name="Package Test Suite">
25 <directory suffix=".php">./test/</directory>
26 </testsuite>
27 </testsuites>
28 <filter>
29 <whitelist>
30 <directory suffix=".php">./</directory>
31 <exclude>
32 <directory suffix=".php">./vendor</directory>
33 <directory suffix=".php">./test</directory>
34 </exclude>
35 </whitelist>
36 </filter>
37 </phpunit>
38