forked from ddeboer/imap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 785 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 785 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
31
32
{
"name": "ddeboer/imap",
"description": "Object-oriented IMAP for PHP",
"keywords": [ "email", "mail", "imap" ],
"license": "MIT",
"authors": [
{
"name": "David de Boer",
"email": "david@ddeboer.nl"
},
{
"name": "Community contributors",
"homepage": "https://github.com/ddeboer/imap/graphs/contributors"
}
],
"require": {
"php": ">=5.4.0",
"ext-imap": "*",
"ddeboer/transcoder": "~1"
},
"require-dev": {
"ext-mbstring": "*",
"ext-iconv": "*",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Ddeboer\\Imap\\": "src/",
"Ddeboer\\Imap\\Tests\\": "tests/"
}
}
}