-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.64 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.64 KB
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
{
"require": {
"craftcms/cms": "3.8.5",
"vlucas/phpdotenv": "^2.4.0",
"craftcms/redactor": "2.10.12",
"topshelfcraft/environment-label": "3.2.0",
"ether/seo": "3.7.4",
"wrav/oembed": "1.13.19",
"xpertbot/craft-wheelform": "2.7.2",
"pennebaker/craft-architect": "2.4.3",
"verbb/super-table": "2.7.4",
"charliedev/section-field": "1.1.0",
"studioespresso/craft-splashingimages": "2.1.8",
"rias/craft-schema": "1.0.3",
"nystudio107/craft-minify": "1.2.11",
"nystudio107/craft-typogrify": "1.1.20",
"craftcms/feed-me": "4.6.1.1",
"joomkit/usergrouplogin": "1.0.0",
"joomkit/pdfthumbnailer": "1.0.0",
"superbig/craft3-mobiledetect": "1.0.2",
"putyourlightson/craft-log-to-file": "^1.1",
"ttempleton/craft-nocache": "2.0.8",
"wbrowar/guide": "3.1.2",
"superbig/craft3-logoutredirect": "2.0.1",
"craftcms/guest-entries": "2.4.0",
"by/guest-entries-notification": "1.0.1",
"hybridinteractive/craft-position-fieldtype": "1.0.17",
"aelvan/imager": "v2.4.0",
"mikestecker/craft-guest-entries-honeypot": "1.0.0"
},
"repositories": [
{
"type": "path",
"url": "plugins/joomkit/*",
"options": {
"symlink": true
}
}
],
"autoload": {
"psr-4": {
"modules\\businesslogic\\": "modules/"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.3"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}