forked from willdurand/EmailReplyParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 752 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 752 Bytes
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
{
"name": "willdurand/email-reply-parser",
"type": "library",
"description": "Port of the cool GitHub's EmailReplyParser library in PHP",
"keywords": ["email", "reply-parser"],
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "will+git@drnd.me"
}
],
"require": {
"php": ">=5.6.0"
},
"autoload": {
"psr-4": { "EmailReplyParser\\": "src/EmailReplyParser" }
},
"autoload-dev": {
"psr-4": { "EmailReplyParser\\Tests\\": "tests/EmailReplyParser/Tests" }
},
"extra": {
"branch-alias": {
"dev-master": "2.8-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8.35|^5.7"
}
}