forked from pear/pear-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"authors": [
{
"email": "[email protected]",
"name": "Greg Beaver",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Pierre-Alain Joye",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Stig Bakken",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Tomas V.V.Cox",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Helgi Thormar",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Tias Guns",
"role": "Developer"
},
{
"email": "[email protected]",
"name": "Tim Jackson",
"role": "Helper"
},
{
"email": "[email protected]",
"name": "Bertrand Gugger",
"role": "Helper"
},
{
"email": "[email protected]",
"name": "Martin Jansen",
"role": "Helper"
}
],
"autoload": {
"classmap": [
"./"
],
"exclude-from-classmap": [
"/tests/"
]
},
"include-path": [
"./"
],
"description": "This is the definitive source of PEAR's core files.",
"license": "BSD-2-Clause",
"name": "pear/pear",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
"source": "https://github.com/pear/PEAR"
},
"type": "library",
"require": {
"php": ">=5.4",
"ext-pcre": "*",
"ext-xml": "*",
"pear/archive_tar": "*",
"pear/structures_graph": "*",
"pear/console_getopt": "*",
"pear/xml_util": "*"
},
"suggest": {
"pear/pear_frontend_gtk": "For GTK support",
"pear/pear_frontend_web": "For Web support"
},
"replace": {
"pear/pear-core-minimal": "*"
}
}