-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 940 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
35
36
{
"name": "blar/mail",
"description": "Mail for PHP",
"type": "library",
"keywords": ["php", "mail"],
"homepage": "https://github.com/blar/mail/",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Andreas Treichel",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"ext-imap": "*",
"blar/mime": "dev-master",
"blar/curl": "dev-master",
"blar/common": "dev-master",
"blar/credentials": "dev-master"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master"
},
"support": {
"source": "https://github.com/blar/mail/",
"issues": "https://github.com/blar/mail/issues",
"wiki": "https://github.com/blar/mail/wiki"
},
"autoload": {
"psr-4": {
"Blar\\Mail\\": "lib/Blar/Mail/"
}
}
}