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        "psr/log": "~1.0"
23    },
24    "require-dev": {
25        "phpunit/phpunit": "~4.0",
26        "erb/testing-tools": "dev-master",
27        "monolog/monolog": "~1.13"
28    },
29    "autoload": {
30        "psr-4": {
31            "Tx\\": "src/"
32        }
33    },
34    "autoload-dev": {
35        "classmap": [
36            "tests/TestCase.php"
37        ]
38    }
39}
40