composer.json
1.1 KB
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
{
"authors": [
{
"email": "jon@php.net",
"name": "Jon Parise",
"homepage": "https://www.indelible.org",
"role": "Lead"
},
{
"email": "chuck@horde.org",
"name": "Chuck Hagenbuch",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Net": "./"
}
},
"description": "An implementation of the SMTP protocol",
"keywords": [
"smtp",
"mail",
"email"
],
"include-path": [
"./"
],
"license": "BSD-2-Clause",
"name": "pear/net_smtp",
"homepage": "https://pear.github.io/Net_SMTP/",
"support": {
"issues": "https://github.com/pear/Net_SMTP/issues",
"source": "https://github.com/pear/Net_SMTP"
},
"type": "library",
"require": {
"php": ">=5.4.0",
"pear/pear-core-minimal": "@stable",
"pear/net_socket": "@stable"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"pear/auth_sasl": "Install optionally via your project's composer.json"
}
}