forked from stuporglue/mailreader
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "forked/mailreader",
"type": "library",
"description": "A fully tested simple email reader parser for PHP 5.6+.",
"keywords": ["pipe", "email", "reader", "parser", "decode"],
"homepage": "https://github.com/techno-express/mailreader",
"support": {
"issues": "https://github.com/techno-express/mailreader/issues"
},
"license": ["LGPL-3.0-or-later"],
"authors": [
{
"name": "Michael Moore",
"email": "[email protected]",
"homepage": "http://stuporglue.org"
},
{
"name":"Lawrence Stubbs",
"email":"[email protected]"
}
],
"require": {
"php": ">5.6",
"forked/mail_mime-decode": "^1.5.6.4"
},
"require-dev": {
"phpunit/phpunit": ">5.7"
},
"suggest": {
"ext-mbstring": "For best support/performance",
"ext-iconv": "For best support/performance"
},
"autoload": {
"files": [
"decode/functions.php"
],
"psr-4": {
"Mail\\": "decode/"
}
},
"autoload-dev": {
"psr-4": {
"Mail\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php tests"
}
}