-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 964 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
29
30
31
32
33
34
{
"name": "php-email2db/php-email2db",
"description": "PHP class to access mailbox by POP3/IMAP using IMAP extension and parsing it into SQL database",
"keywords": ["php", "imap", "email", "sql", "mysql", "postgresql"],
"homepage": "https://github.com/moiseevigor/Email2DB",
"license": "GPLv3",
"type": "library",
"authors": [{
"name": "Igor Moiseev",
"homepage": "http://moiseevigor.github.io/",
"email": "[email protected]"
}],
"repositories": [{
"type": "pear",
"url": "http://pear.php.net"
}],
"autoload": {
"psr-0": {"": "src/"},
"psr-0": {"": "db/"}
},
"require": {
"php": ">=5.4.0",
"phing/phing" : "2.*",
"pear-pear.php.net/pear": "*",
"pear/System_Daemon": "*@dev",
"pear/pear_exception": "*@beta",
"pear/Log": "*",
"exorus/php-mime-mail-parser": "dev-master",
"doctrine/orm": "*",
"symfony/yaml": "2.*",
"ext-imap": "*"
},
"minimum-stability": "dev"
}