OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
znew1aws-ses
/
vendor
/
phpmailer
/
phpmailer
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/16/2024 08:24:24 AM
rwxr-xr-x
📄
.codecov.yml
363 bytes
08/16/2024 08:24:24 AM
rw-r--r--
📄
.editorconfig
235 bytes
08/16/2024 08:24:24 AM
rw-r--r--
📁
.git
-
08/16/2024 08:32:48 AM
rwxr-xr-x
📄
.gitattributes
402 bytes
08/16/2024 08:24:25 AM
rw-r--r--
📁
.github
-
08/16/2024 08:32:49 AM
rwxr-xr-x
📄
.gitignore
279 bytes
08/16/2024 08:24:25 AM
rw-r--r--
📁
.phan
-
08/16/2024 08:28:04 AM
rwxr-xr-x
📄
COMMITMENT
2.09 KB
08/16/2024 08:24:25 AM
rw-r--r--
📄
LICENSE
26.4 KB
08/16/2024 08:24:26 AM
rw-r--r--
📄
README.md
16.47 KB
08/16/2024 08:24:26 AM
rw-r--r--
📄
SECURITY.md
7.44 KB
08/16/2024 08:24:27 AM
rw-r--r--
📄
UPGRADING.md
5.34 KB
08/16/2024 08:24:27 AM
rw-r--r--
📄
VERSION
7 bytes
08/16/2024 08:24:27 AM
rw-r--r--
📄
changelog.md
51.23 KB
08/16/2024 08:24:25 AM
rw-r--r--
📄
composer.json
2.76 KB
08/16/2024 08:24:25 AM
rw-r--r--
📁
docs
-
08/16/2024 08:28:04 AM
rwxr-xr-x
📁
examples
-
08/16/2024 08:30:21 AM
rwxr-xr-x
📄
get_oauth_token.php
6.26 KB
08/16/2024 08:24:25 AM
rw-r--r--
📁
language
-
08/16/2024 08:28:11 AM
rwxr-xr-x
📄
phpcs.xml.dist
1.9 KB
08/16/2024 08:24:26 AM
rw-r--r--
📄
phpdoc.dist.xml
471 bytes
08/16/2024 08:24:26 AM
rw-r--r--
📄
phpunit.xml.dist
1.19 KB
08/16/2024 08:24:26 AM
rw-r--r--
📁
src
-
08/16/2024 08:28:13 AM
rwxr-xr-x
📁
test
-
08/16/2024 08:32:49 AM
rwxr-xr-x
Editing: phpunit.xml.dist
Close
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd" backupGlobals="true" bootstrap="vendor/autoload.php" convertDeprecationsToExceptions="true" verbose="true" colors="true" forceCoversAnnotation="false" > <testsuites> <testsuite name="PHPMailerTests"> <directory>./test/</directory> </testsuite> </testsuites> <listeners> <listener class="PHPMailer\Test\DebugLogTestListener" /> </listeners> <groups> <exclude> <group>languages</group> <group>pop3</group> </exclude> </groups> <filter> <whitelist addUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> </whitelist> </filter> <logging> <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/> <log type="coverage-clover" target="build/logs/clover.xml"/> <log type="junit" target="build/logs/junit.xml"/> </logging> </phpunit>