forked from vanilla/vanilla
-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
53 lines (52 loc) · 1.13 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
{
"name": "vanilla/vanilla",
"description": "Vanilla is a powerfully simple discussion forum you can easily customize to make as unique as your community.",
"type": "project",
"license": "GPLv2",
"authors": [
{
"name": "Todd Burry",
"email": "[email protected]"
},
{
"name": "Mark O'Sullivan",
"email": "[email protected]"
},
{
"name": "Tim Gunter",
"email": "[email protected]"
},
{
"name": "Lincoln Russell",
"email": "[email protected]"
}
],
"require": {
"vanilla/garden-http": "~1.0",
"vanilla/htmlawed": "~1.0",
"vanilla/nbbc": "~2.1"
},
"autoload": {
"classmap": [
"library/core/",
"library/database/",
"library/setup/",
"library/vendors/"
],
"files": [
"library/core/functions.error.php",
"library/core/functions.general.php",
"library/core/functions.compatibility.php",
"library/core/functions.deprecated.php"
]
},
"scripts": {
"pre-install-cmd": "Vanilla\\Setup\\ComposerHelper::preUpdate",
"pre-update-cmd": "Vanilla\\Setup\\ComposerHelper::preUpdate"
},
"autoload-dev": {
"psr-4": {
"VanillaTests\\": "tests"
}
}
}