forked from pear/Mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.26 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"authors": [
{
"email": "[email protected]",
"name": "Chuck Hagenbuch",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Armin Graefe",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Richard Heyes",
"role": "Developer"
},
{
"email": "[email protected]",
"name": "Aleksander Machniak",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Mail": "./"
}
},
"description": "Class that provides multiple interfaces for sending emails.",
"homepage": "http://pear.php.net/package/Mail",
"include-path": [
"./"
],
"license": "BSD-3-Clause",
"name": "pear/mail",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Mail",
"source": "https://github.com/pear/Mail"
},
"type": "library",
"require": {
"php": ">=5.2.1",
"pear/pear-core-minimal": "~1.9"
},
"require-dev": {
"pear/pear": "*"
},
"suggest": {
"pear/net_smtp": "Install optionally via your project's composer.json"
}
}