-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
60 lines (60 loc) · 1.37 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
{
"require": {
"craftcms/ckeditor": "^4.1.0",
"craftcms/cms": "^5.0.0",
"mmikkel/retcon": "^3.2.0",
"nystudio107/craft-retour": "^5.0.2",
"nystudio107/craft-seomatic": "^5.0.4",
"nystudio107/craft-vite": "^5.0.0",
"putyourlightson/craft-dashboard-begone": "^3.0.0",
"verbb/formie": "^3.0.0-beta.16",
"vlucas/phpdotenv": "^5.6.0",
"wbrowar/craft-admin-bar": "^5.0.0-beta.1"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2.20"
}
},
"scripts": {
"craft-update": [
"@php craft install/check && php craft clear-caches/all --interactive=0 || exit 0",
"@php craft install/check && php craft up --interactive=0 || exit 0"
],
"deploy-staging": [
"composer install --no-interaction --prefer-dist --optimize-autoloader"
],
"deploy-production": [
"composer craft-update"
],
"post-update-cmd": "@craft-update",
"post-install-cmd": "@craft-update",
"nuke": [
"rm -rf vendor/ || true",
"rm composer.lock || true",
"composer clear-cache",
"composer update"
]
},
"repositories": [
{
"type": "composer",
"url": "https://composer.craftcms.com",
"canonical": false
}
]
}