Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
phpunit.xml.dist
01 <?xml version="1.0" encoding="UTF-8"?>
02 <phpunit bootstrap="./vendor/autoload.php"
03 backupGlobals="true"
04 colors="true"
05 >
06 <testsuites>
07 <testsuite name="Unit test ">
08 <directory>tests</directory>
09 </testsuite>
10 </testsuites>
11 <filter>
12 <whitelist>
13 <directory suffix=".php">./src/</directory>
14 <exclude>
15 <file>src/OAuth/bootstrap.php</file>
16 <file>src/OAuth/Common/Exception/Exception.php</file>
17 <file>src/OAuth/Common/Http/Exception/TokenResponseException.php</file>
18 <file>src/OAuth/Common/Storage/Exception/StorageException.php</file>
19 <file>src/OAuth/Common/Storage/Exception/TokenNotFoundException.php</file>
20 <file>src/OAuth/Common/Token/Exception/ExpiredTokenException.php</file>
21 <file>src/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php</file>
22 <file>src/OAuth/OAuth2/Service/Exception/InvalidScopeException.php</file>
23 <file>src/OAuth/OAuth2/Service/Exception/MissingRefreshTokenException.php</file>
24 <file>src/OAuth/OAuth2/Token/StdOAuth2Token.php</file>
25 </exclude>
26 </whitelist>
27 </filter>
28 <php>
29 <env name="redis_host" value="127.0.0.1"/>
30 <env name="redis_port" value="6379"/>
31 </php>
32 </phpunit>
33