-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
94 lines (94 loc) · 2.92 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
{
"name": "marbles/craft",
"description": "Marbles Craft 3 CMS scaffolding project",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "MIT",
"homepage": "https://craftcms.com/",
"type": "project",
"support": {
"email": "[email protected]",
"issues": "https://github.com/marbles/craft/issues",
"source": "https://github.com/marbles/craft",
"docs": "https://github.com/marbles/craft"
},
"minimum-stability": "RC",
"require": {
"carlcs/craft-redactorcustomstyles": "3.0.4",
"charliedev/section-field": "1.1.0",
"craftcms/cms": "3.7.39",
"craftcms/redactor": "2.10.7",
"dolphiq/iconpicker": "dev-development",
"ether/seo": "3.7.4",
"glue-agency/craft-fingerprint-assets": "1.0.1",
"hybridinteractive/craft-position-fieldtype": "1.0.17",
"mmikkel/cp-clearcache": "1.2.0",
"nystudio107/craft-eagerbeaver": "1.0.4",
"nystudio107/craft-minify": "1.2.11",
"nystudio107/craft-scripts": "^1.2.4",
"nystudio107/craft-twigpack": "1.2.17",
"nystudio107/craft-typogrify": "1.1.19",
"percipioglobal/craft-colour-swatches": "1.5.2",
"putyourlightson/craft-elements-panel": "1.1.1",
"putyourlightson/craft-sherlock": "3.1.4",
"putyourlightson/craft-sprig": "1.13.0",
"sebastianlenz/linkfield": "1.0.25",
"solspace/craft-freeform": "3.13.7",
"spicyweb/craft-embedded-assets": "2.10.7",
"spicyweb/craft-neo": "2.13.6",
"statikbe/craft-config-values": "1.0.1",
"superbig/craft3-imgix": "2.1.0",
"utakka/redactor-anchors": "1.3.2",
"verbb/expanded-singles": "1.2.0",
"verbb/navigation": "1.4.26",
"verbb/super-table": "2.7.1",
"vlucas/phpdotenv": "^3.0",
"wbrowar/adminbar": "3.1.11",
"youandmedigital/breadcrumb": "1.1.0"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/",
"modules\\hidealerts\\": "modules/hidealerts/src/"
}
},
"config": {
"sort-packages": true,
"cache-files-ttl": 0,
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
}
},
"scripts": {
"craft-update": [
"@pre-craft-update",
"@post-craft-update"
],
"pre-craft-update": [
],
"post-craft-update": [
"@php craft install/check && php craft clear-caches/all --interactive=0 || exit 0",
"@php craft install/check && php craft migrate/all --interactive=0 || exit 0",
"@php craft install/check && php craft project-config/apply --interactive=0 || return 0"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php craft setup/welcome",
"@php marbles-setup welcome"
],
"pre-update-cmd": "@pre-craft-update",
"pre-install-cmd": "@pre-craft-update",
"post-update-cmd": "@post-craft-update",
"post-install-cmd": "@post-craft-update"
}
}