forked from thebuggenie/thebuggenie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (73 loc) · 2.33 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
{
"name" : "thebuggenie/thebuggenie",
"description" : "The Bug Genie is a friendly project management and issue tracking tool",
"authors" : [{
"name" : "Daniel Andre Eikeland",
"email" : "[email protected]"
}
],
"support" : {
"email" : "[email protected]",
"forum" : "http://forum.thebuggenie.org",
"issues" : "https://issues.thebuggenie.com",
"irc" : "irc://irc.freenode.org/thebuggenie"
},
"license" : [
"MPL-2.0"
],
"require" : {
"php": "^7.1|^7.2",
"thebuggenie/b2db" : "^3.0",
"swiftmailer/swiftmailer" : "4.2.*",
"webit/eval-math" : "^1.0",
"mustangostang/spyc": "0.5.*",
"realityking/pchart": "dev-master",
"phpoffice/phpexcel": "~1.8",
"kriswallsmith/assetic": "~1.2",
"lib-pcre" : "8.*",
"net/http" : "^1.1",
"guzzlehttp/guzzle": "^6.3",
"scrivo/highlight.php": "^9.0",
"ramsey/uuid": "^3.7",
"erusev/parsedown": "^1.7",
"ext-apcu" : "*",
"ext-gd" : "*",
"ext-curl" : "*",
"ext-PDO" : "*",
"ext-iconv" : "*",
"ext-json" : "*",
"ext-mbstring" : "*",
"ext-pcre" : "*",
"ext-xml" : "*",
"ext-Reflection" : "*",
"ext-zip" : "*",
"easybook/geshi": "v1.0.8.19",
"league/html-to-markdown": "^4.8"
},
"require-dev" : {
"symfony/finder" : "~2.7",
"phpunit/phpunit": "4.*",
"phpunit/phpunit-skeleton-generator": "*"
},
"suggest" : {
"ext-apc" : "Enables APC caching of configuration files and table class definitions"
},
"autoload": {
"psr-4" : {
"thebuggenie\\modules\\" : "modules/",
"thebuggenie\\core\\" : "core/"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"scripts": {
"post-install-cmd": [
"thebuggenie\\core\\modules\\installation\\controllers\\Main::createCacheFolder",
"thebuggenie\\core\\modules\\installation\\controllers\\Main::checkAssetSymlink"
],
"post-update-cmd": [
"thebuggenie\\core\\modules\\installation\\controllers\\Main::createCacheFolder",
"thebuggenie\\core\\modules\\installation\\controllers\\Main::checkAssetSymlink"
]
}
}