composer.json
999 字节
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
{
"authors": [
{
"email": "amistry@am-productions.biz",
"name": "Anish Mistry",
"role": "Lead"
},
{
"email": "richard@php.net",
"name": "Richard Heyes",
"role": "Lead"
},
{
"email": "michael@bretterklieber.com",
"name": "Michael Bretterklieber",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Auth": "./"
}
},
"description": "Abstraction of various SASL mechanism responses",
"include-path": [
"./"
],
"license": "BSD",
"name": "pear/auth_sasl",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Auth_SASL",
"source": "https://github.com/pear/Auth_SASL"
},
"type": "library",
"require": {
"pear/pear_exception": "@stable"
},
"require-dev": {
"phpunit/phpunit": "@stable"
}
}