fa170a0bbbde40029a1f8bd3c8e03b0feec8666e
[friendica-addons.git/.git] / phpmailer / vendor / phpmailer / phpmailer / composer.json
1 {
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     "config": {
29         "allow-plugins": {
30             "dealerdirect/phpcodesniffer-composer-installer": true
31         }
32     },
33     "require": {
34         "php": ">=5.5.0",
35         "ext-ctype": "*",
36         "ext-filter": "*",
37         "ext-hash": "*"
38     },
39     "require-dev": {
40         "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
41         "doctrine/annotations": "^1.2.6 || ^1.13.3",
42         "php-parallel-lint/php-console-highlighter": "^1.0.0",
43         "php-parallel-lint/php-parallel-lint": "^1.3.2",
44         "phpcompatibility/php-compatibility": "^9.3.5",
45         "roave/security-advisories": "dev-latest",
46         "squizlabs/php_codesniffer": "^3.7.2",
47         "yoast/phpunit-polyfills": "^1.0.4"
48     },
49     "suggest": {
50         "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
51         "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
52         "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
53         "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
54         "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
55         "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
56         "psr/log": "For optional PSR-3 debug logging",
57         "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication",
58         "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
59     },
60     "autoload": {
61         "psr-4": {
62             "PHPMailer\\PHPMailer\\": "src/"
63         }
64     },
65     "autoload-dev": {
66         "psr-4": {
67             "PHPMailer\\Test\\": "test/"
68         }
69     },
70     "license": "LGPL-2.1-only",
71     "scripts": {
72         "check": "./vendor/bin/phpcs",
73         "test": "./vendor/bin/phpunit --no-coverage",
74         "coverage": "./vendor/bin/phpunit",
75         "lint": [
76             "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . --show-deprecated -e php,phps --exclude vendor --exclude .git --exclude build"
77         ]
78     }
79 }