forked from pachno/pachno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.42 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
{
"name": "pachno/pachno",
"description": "Pachno is a friendly project management and issue tracking tool",
"authors": [
{
"name": "Daniel Andre Eikeland",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"forum": "https://forum.pach.no",
"issues": "https://projects.pach.no"
},
"license": [
"MPL-2.0"
],
"require": {
"php": "^7.4|^8.0",
"pachno/b2db": "^1.0.4",
"swiftmailer/swiftmailer": "^6.0",
"webit/eval-math": "^1.0",
"mustangostang/spyc": "^0.6",
"realityking/pchart": "dev-master",
"phpoffice/phpspreadsheet": "^1.17.0",
"kriswallsmith/assetic": "~1.2",
"lib-pcre": "8.*|10.*",
"net/http": "^1.1",
"guzzlehttp/guzzle": "^6.3",
"scrivo/highlight.php": "^9.0",
"ramsey/uuid": "^4.2",
"erusev/parsedown": "^1.7",
"ext-gd": "*",
"ext-dom": "*",
"ext-curl": "*",
"ext-PDO": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-xml": "*",
"ext-Reflection": "*",
"ext-zip": "*",
"pragmarx/google2fa": "^6.1",
"pragmarx/google2fa-qrcode": "^1.0",
"codex-team/editor.js": "dev-master",
"gregwar/captcha": "^1.1",
"kevinlebrun/password.php": "^0.1.3",
"nadar/php-composer-reader": "^1.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/finder": "~2.7",
"phpunit/phpunit": "4.*",
"phpunit/phpunit-skeleton-generator": "*",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.68"
},
"repositories": [],
"autoload": {
"psr-4": {
"pachno\\modules\\": "modules/",
"pachno\\core\\": "core/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"pachno\\core\\modules\\installation\\controllers\\Main::createCacheFolder",
"pachno\\core\\modules\\installation\\controllers\\Main::checkAssetSymlink"
],
"post-update-cmd": [
"pachno\\core\\modules\\installation\\controllers\\Main::createCacheFolder",
"pachno\\core\\modules\\installation\\controllers\\Main::checkAssetSymlink"
]
}
}