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