-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.18 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.18 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pixelandbrick/craftcms",
"description": "Pixel+Brick - Craft CMS template project",
"keywords": [
"pixelandbrick",
"craftcms",
"yii2"
],
"authors": [
{
"name": "Pixel+Brick",
"homepage": "https://pixel-brick.com/"
}
],
"support": {
"email": "webmaster@pixel-brick.com",
"issues": "https://github.com/pixelandbrick/craftcms/issues?state=open",
"source": "https://github.com/pixelandbrick/craftcms"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {}
},
"require": {
"craftcms/cms": "^5.0.0",
"craftcms/ckeditor": "^4.10.1",
"nystudio107/craft-retour": "^5.0.12",
"nystudio107/craft-seomatic": "^5.1.17",
"nystudio107/craft-typogrify": "^5.0.1",
"nystudio107/craft-vite": "^5.0.1",
"putyourlightson/craft-sendgrid": "^3.0.0",
"verbb/formie": "^3.1.3",
"vlucas/phpdotenv": "^5.6.2"
},
"require-dev": {
"craftcms/generator": "^2.2.0",
"yiisoft/yii2-shell": "^2.0.6",
"nystudio107/craft-autocomplete": "^1.12.0"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.4"
}
},
"scripts": {
"craft-update": [
"@pre-craft-update",
"@post-craft-update"
],
"pre-craft-update": [],
"post-craft-update": [
"@php craft install/check && php craft up --interactive=0 || exit 0",
"@php craft install/check && php craft clear-caches/all --interactive=0 || exit 0",
"@php craft install/check && php craft invalidate-tags/all --interactive=0 || return 0"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example.dev', '.env');\""
],
"post-create-project-cmd": [
"@php craft 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"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.craftcms.com",
"canonical": false
}
]
}