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