blob: 58393b2cd67ddfa81e2f8cd8724ea18b11d50719 [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001{
2 "name": "phpmailer/phpmailer",
3 "type": "library",
4 "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
5 "authors": [
6 {
7 "name": "Marcus Bointon",
8 "email": "phpmailer@synchromedia.co.uk"
9 },
10 {
11 "name": "Jim Jagielski",
12 "email": "jimjag@gmail.com"
13 },
14 {
15 "name": "Andy Prevost",
16 "email": "codeworxtech@users.sourceforge.net"
17 },
18 {
19 "name": "Brent R. Matzelle"
20 }
21 ],
22 "funding": [
23 {
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010024 "url": "https://github.com/Synchro",
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010025 "type": "github"
26 }
27 ],
28 "require": {
29 "php": ">=5.5.0",
30 "ext-ctype": "*",
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010031 "ext-filter": "*",
32 "ext-hash": "*"
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010033 },
34 "require-dev": {
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010035 "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
36 "doctrine/annotations": "^1.2",
37 "phpcompatibility/php-compatibility": "^9.3.5",
38 "roave/security-advisories": "dev-latest",
39 "squizlabs/php_codesniffer": "^3.5.6",
40 "yoast/phpunit-polyfills": "^0.2.0"
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010041 },
42 "suggest": {
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020043 "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
Matthias Andreas Benkarde39c4f82021-01-06 17:59:39 +010044 "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
45 "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
46 "psr/log": "For optional PSR-3 debug logging",
47 "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010048 "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
49 },
50 "autoload": {
51 "psr-4": {
52 "PHPMailer\\PHPMailer\\": "src/"
53 }
54 },
55 "autoload-dev": {
56 "psr-4": {
57 "PHPMailer\\Test\\": "test/"
58 }
59 },
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020060 "license": "LGPL-2.1-only",
61 "scripts": {
62 "check": "./vendor/bin/phpcs",
63 "test": "./vendor/bin/phpunit"
64 }
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +010065}