OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
aws-ses
/
vendor
/
phpmailer
/
phpmailer
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 10:50:15 AM
rwxr-xr-x
📄
.codecov.yml
363 bytes
08/14/2024 10:50:15 AM
rw-r--r--
📄
.editorconfig
235 bytes
08/14/2024 10:50:15 AM
rw-r--r--
📁
.git
-
08/14/2024 10:55:57 AM
rwxr-xr-x
📄
.gitattributes
402 bytes
08/14/2024 10:50:15 AM
rw-r--r--
📁
.github
-
08/14/2024 10:55:57 AM
rwxr-xr-x
📄
.gitignore
279 bytes
08/14/2024 10:50:15 AM
rw-r--r--
📁
.phan
-
08/14/2024 10:51:28 AM
rwxr-xr-x
📄
COMMITMENT
2.09 KB
08/14/2024 10:50:15 AM
rw-r--r--
📄
LICENSE
26.4 KB
08/14/2024 10:50:15 AM
rw-r--r--
📄
README.md
16.47 KB
08/14/2024 10:50:16 AM
rw-r--r--
📄
SECURITY.md
7.44 KB
08/14/2024 10:50:16 AM
rw-r--r--
📄
UPGRADING.md
5.34 KB
08/14/2024 10:50:16 AM
rw-r--r--
📄
VERSION
7 bytes
08/14/2024 10:50:16 AM
rw-r--r--
📄
changelog.md
51.23 KB
08/14/2024 10:50:15 AM
rw-r--r--
📄
composer.json
2.76 KB
08/14/2024 10:50:15 AM
rw-r--r--
📁
docs
-
08/14/2024 10:51:28 AM
rwxr-xr-x
📁
examples
-
08/14/2024 10:52:58 AM
rwxr-xr-x
📄
get_oauth_token.php
6.26 KB
08/14/2024 10:50:15 AM
rw-r--r--
📁
language
-
08/14/2024 10:51:31 AM
rwxr-xr-x
📄
phpcs.xml.dist
1.9 KB
08/14/2024 10:50:15 AM
rw-r--r--
📄
phpdoc.dist.xml
471 bytes
08/14/2024 10:50:15 AM
rw-r--r--
📄
phpunit.xml.dist
1.19 KB
08/14/2024 10:50:15 AM
rw-r--r--
📁
src
-
08/14/2024 10:51:32 AM
rwxr-xr-x
📁
test
-
08/14/2024 10:55:57 AM
rwxr-xr-x
Editing: composer.json
Close
{ "name": "phpmailer/phpmailer", "type": "library", "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "authors": [ { "name": "Marcus Bointon", "email": "phpmailer@synchromedia.co.uk" }, { "name": "Jim Jagielski", "email": "jimjag@gmail.com" }, { "name": "Andy Prevost", "email": "codeworxtech@users.sourceforge.net" }, { "name": "Brent R. Matzelle" } ], "funding": [ { "url": "https://github.com/Synchro", "type": "github" } ], "config": { "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true } }, "require": { "php": ">=5.5.0", "ext-ctype": "*", "ext-filter": "*", "ext-hash": "*" }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^1.0", "doctrine/annotations": "^1.2.6 || ^1.13.3", "php-parallel-lint/php-console-highlighter": "^1.0.0", "php-parallel-lint/php-parallel-lint": "^1.3.2", "phpcompatibility/php-compatibility": "^9.3.5", "roave/security-advisories": "dev-latest", "squizlabs/php_codesniffer": "^3.7.2", "yoast/phpunit-polyfills": "^1.0.4" }, "suggest": { "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication", "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", "ext-openssl": "Needed for secure SMTP sending and DKIM signing", "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", "league/oauth2-google": "Needed for Google XOAUTH2 authentication", "psr/log": "For optional PSR-3 debug logging", "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication", "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" }, "autoload": { "psr-4": { "PHPMailer\\PHPMailer\\": "src/" } }, "autoload-dev": { "psr-4": { "PHPMailer\\Test\\": "test/" } }, "license": "LGPL-2.1-only", "scripts": { "check": "./vendor/bin/phpcs", "test": "./vendor/bin/phpunit --no-coverage", "coverage": "./vendor/bin/phpunit", "lint": [ "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . --show-deprecated -e php,phps --exclude vendor --exclude .git --exclude build" ] } }