forked from mablae/php-bounce-mail-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 849 Bytes
/
composer.json
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
{
"name": "sbknk/php-bounce-mail-parser",
"type": "library",
"description": "Library to analyze bounced emails",
"keywords": ["mime", "mail", "mailparse", "MimeMailParser", "bounce"],
"homepage": "https://github.com/sbknk/php-bounce-mail-parser",
"license": "MIT",
"authors": [
{
"name": "Sebastian Kenk",
"email": "[email protected]",
"homepage": "https://github.com/sbknk/",
"role": "Developer"
}
],
"repository":{
"type": "git",
"url": "https://github.com/sbknk/php-bounce-mail-parser.git"
},
"require": {
"php": ">=5.4.0",
"ext-mailparse": "*",
"php-mime-mail-parser/php-mime-mail-parser": ">=2.1"
},
"autoload": {
"psr-4": { "PhpBounceMailParser\\": "src/" }
}
}