forked from vanilla/vanilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
96 lines (96 loc) · 2.9 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"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": "GPL-2.0-only",
"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]"
}
],
"config": {
"platform": {
"php": "7.0.26"
}
},
"require": {
"php": ">=7.0.0",
"ext-json": "*",
"container-interop/container-interop": "^1.1",
"chrisjean/php-ico": "~1.0",
"firebase/php-jwt": "~5.0",
"michelf/php-markdown": "~1.7.0",
"pclzip/pclzip": "~2.0",
"phpmailer/phpmailer": "~5.2",
"psr/log": "~1.0",
"smarty/smarty": "~3.1",
"symfony/yaml": "^3.2",
"tburry/pquery": "~1.1",
"vanilla/garden-container": "^1.3.4",
"vanilla/garden-http": "~1.0",
"vanilla/garden-schema": "~1.0",
"vanilla/garden-password": "~1.0",
"vanilla/htmlawed": "~2.0",
"vanilla/legacy-oauth": "~1.0",
"vanilla/legacy-passwords": "~1.0",
"vanilla/nbbc": "~2.1",
"vanilla/vanilla-connect": "~0.0",
"twig/twig": "^2.5"
},
"require-dev": {
"exussum12/coverage-checker": "~0.10",
"phpunit/phpunit": "~6.0",
"vanilla/standards": "~1.3",
"voku/html-min": "3.0.5",
"voku/simple_html_dom": "4.1.7",
"mikey179/vfsStream": "~1.6",
"phing/phing": "2.*"
},
"provide": {
"ext-gd": "*"
},
"autoload": {
"classmap": [
"library/core/",
"library/database/",
"library/setup/"
],
"files": [
"library/core/functions.error.php",
"library/core/functions.general.php",
"library/core/functions.compatibility.php",
"library/core/functions.deprecated.php"
],
"psr-4": {
"Vanilla\\": "library/Vanilla",
"Garden\\": "library/Garden"
}
},
"scripts": {
"pre-install-cmd": "Vanilla\\Setup\\ComposerHelper::preUpdate",
"pre-update-cmd": "Vanilla\\Setup\\ComposerHelper::preUpdate",
"post-install-cmd": "Vanilla\\Setup\\ComposerHelper::postUpdate",
"lint-diff": "./tests/travis/diff-standards.sh"
},
"autoload-dev": {
"psr-4": {
"VanillaTests\\": "tests",
"VanillaTests\\Fixtures\\": "tests\\fixtures\\src",
"GardenTests\\": "tests",
"GardenTests\\Fixtures\\": "tests\\fixtures\\src"
}
}
}