-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
executable file
·67 lines (67 loc) · 1.7 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
{
"name": "jmcgaha/craft-boilerplate",
"description": "Craft CMS",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "0BSD",
"homepage": "https://craftcms.com/",
"type": "project",
"support": {
"email": "support@craftcms.com",
"issues": "https://github.com/craftcms/cms/issues",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/cms",
"docs": "https://craftcms.com/docs",
"rss": "https://craftcms.com/changelog.rss"
},
"require": {
"clubstudioltd/craft-asset-rev": "^8.0.0",
"craftcms/ckeditor": "^4.4.0",
"craftcms/cms": "^5.5.7",
"nystudio107/craft-templatecomments": "^5.0.4",
"topshelfcraft/environment-label": "^5.0.0",
"vlucas/phpdotenv": "^5.6.1"
},
"require-dev": {
"craftcms/generator": "^2.1.0",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main",
"yiisoft/yii2-shell": "^2.0.5"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2"
}
},
"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"
],
"post-install-cmd": [
"@craft-update"
],
"post-update-cmd": [
"@craft-update"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"file_exists('scripts/.env.sh') || copy('scripts/example.env.sh', 'scripts/.env.sh');\""
],
"post-create-project-cmd": [
"@php craft setup/welcome"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}