summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: a0ac296494131dc4a45fbab08267ecb65eb39ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
    "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"
        }
    ],
    "require": {
        "ext-ctype": "*",
        "php": ">=5.0.0"
    },
    "require-dev": {
        "doctrine/annotations": "1.2.*",
        "jms/serializer": "0.16.*",
        "phpdocumentor/phpdocumentor": "2.*",
        "phpunit/phpunit": "4.8.*",
        "symfony/debug": "2.8.*",
        "symfony/filesystem": "2.8.*",
        "symfony/translation": "2.8.*",
        "symfony/yaml": "2.8.*",
        "zendframework/zend-cache": "2.5.1",
        "zendframework/zend-config": "2.5.1",
        "zendframework/zend-eventmanager": "2.5.1",
        "zendframework/zend-filter": "2.5.1",
        "zendframework/zend-i18n": "2.5.1",
        "zendframework/zend-json": "2.5.1",
        "zendframework/zend-math": "2.5.1",
        "zendframework/zend-serializer": "2.5.*",
        "zendframework/zend-servicemanager": "2.5.*",
        "zendframework/zend-stdlib": "2.5.1"
    },
    "suggest": {
        "league/oauth2-google": "Needed for Google XOAUTH2 authentication"
    },
    "autoload": {
        "classmap": [
            "class.phpmailer.php",
            "class.phpmaileroauth.php",
            "class.phpmaileroauthgoogle.php",
            "class.smtp.php",
            "class.pop3.php",
            "extras/EasyPeasyICS.php",
            "extras/ntlm_sasl_client.php"
        ]
    },
    "license": "LGPL-2.1"
}