blob: 90d2576f5648ab4987a0ebbe177b19017e4d9565 [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 {
24 "url": "https://github.com/synchro",
25 "type": "github"
26 }
27 ],
28 "require": {
29 "php": ">=5.5.0",
30 "ext-ctype": "*",
31 "ext-filter": "*"
32 },
33 "require-dev": {
34 "friendsofphp/php-cs-fixer": "^2.2",
35 "phpunit/phpunit": "^4.8 || ^5.7",
36 "doctrine/annotations": "^1.2"
37 },
38 "suggest": {
39 "psr/log": "For optional PSR-3 debug logging",
40 "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
41 "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
42 "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
43 "ext-mbstring": "Needed to send email in multibyte encoding charset",
44 "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
45 },
46 "autoload": {
47 "psr-4": {
48 "PHPMailer\\PHPMailer\\": "src/"
49 }
50 },
51 "autoload-dev": {
52 "psr-4": {
53 "PHPMailer\\Test\\": "test/"
54 }
55 },
56 "license": "LGPL-2.1-only"
57}