summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 9e5d360fe49033fe5a76b9956a58ac1463a71ec6 (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
{
    "name": "swiftmailer/swiftmailer",
    "type": "library",
    "description": "Swiftmailer, free feature-rich PHP mailer",
    "keywords": ["mail","mailer","email"],
    "homepage": "https://swiftmailer.symfony.com",
    "license": "MIT",
    "authors": [
        {
            "name": "Chris Corbyn"
        },
        {
            "name": "Fabien Potencier",
            "email": "fabien@symfony.com"
        }
    ],
    "require": {
        "php": ">=7.0.0",
        "egulias/email-validator": "~2.0"
    },
    "require-dev": {
        "mockery/mockery": "~0.9.1",
        "symfony/phpunit-bridge": "~3.3@dev"
    },
    "suggest": {
        "ext-intl": "Needed to support internationalized email addresses",
        "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
    },
    "autoload": {
        "files": ["lib/swift_required.php"]
    },
    "autoload-dev": {
        "psr-0": { "Swift_": "tests/unit" }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "6.1-dev"
        }
    }
}