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