forked from activecollab/EmailReplyExtractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 673 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 673 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
{
"name" : "activecollab/emailreplyextractor",
"type": "library",
"description": "Extra replies from email messages",
"prefer-stable": true,
"keywords": [ "email", "signature", "quote", "activecollab" ],
"homepage": "https://www.activecollab.com/labs/index.html",
"license": "MIT",
"authors": [
{
"name": "Ilija Studen",
"email": "ilija.studen@activecollab.com"
}
],
"require" : {
"php": ">=5.5.0",
"php-mime-mail-parser/php-mime-mail-parser": "~1.7.4"
},
"require-dev" : {
"phpunit/phpunit": "~4.1"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": { "ActiveCollab\\EmailReplyExtractor" : "src" }
}
}