xref: /plugin/smtp/subtree/txtthinking/Mailer/composer.json (revision dd3fc41017b353f3169449857c90872c34712c6d)
1{
2    "name": "txthinking/mailer",
3    "type": "library",
4    "keywords": ["mail", "smtp"],
5    "description": "A very lightweight PHP SMTP mail sender",
6    "license": "MIT",
7    "homepage": "http://github.com/txthinking/Mailer",
8    "authors": [
9      {
10        "name": "Cloud",
11        "email": "cloud@txthinking.com",
12        "homepage": "http://www.txthinking.com",
13        "role": "Thinker"
14      },
15      {
16        "name": "Matt Sowers",
17        "email": "msowers@erblearn.org"
18      }
19    ],
20    "require": {
21        "php": ">=5.3.2",
22        "monolog/monolog": "~1.13"
23    },
24    "require-dev": {
25        "phpunit/phpunit": "~4.0",
26        "erb/testing-tools": "dev-master"
27    },
28    "autoload": {
29        "psr-4": {
30            "Tx\\": "src/"
31        }
32    },
33    "autoload-dev": {
34        "classmap": [
35            "tests/TestCase.php"
36        ]
37    }
38}
39