-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.29 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
52
53
54
{
"authors": [
{
"email": "[email protected]",
"name": "Martin Jansen",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Yavor Shahpasov",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Adam Ashley",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "James E. Flemer",
"role": "Developer"
},
{
"email": "[email protected]",
"name": "Adam Harvey",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"Auth": "./"
}
},
"description": "More info available on: http://pear.php.net/package/Auth",
"include-path": [
"./"
],
"license": "PHP License",
"name": "pear/auth",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Auth",
"source": "https://github.com/pear/Auth"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"pear/log": "Install optionally via your project's composer.json"
}
}