-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
33 lines (33 loc) · 928 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
{
"name" : "pear/auth_sasl2",
"description" : "Provides code to generate responses to common SASL mechanisms, including: [Digest-MD5, Cram-MD5, Plain, Anonymous, Login (Pseudo mechanism), SCRAM]",
"type" : "library",
"keywords" : [ "sasl" ],
"homepage" : "https://github.com/pear/Auth_SASL2",
"license" : "BSD-3-Clause",
"authors" : [
{
"name" : "Anish Mistry",
"email" : "amistry@am-productions.biz"
},
{
"name" : "Richard Heyes",
"email" : "richard@php.net"
},
{
"name" : "Michael Bretterklieber",
"email" : "michael@bretterklieber.com"
}
],
"autoload": {
"psr-0": {
"Auth_SASL2" : ""
}
},
"require" : {
"php": ">=5.4.0"
},
"require-dev" : {
"phpunit/phpunit": "@stable"
}
}