-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
60 lines (60 loc) · 1.53 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
{
"name": "createsean/craft-starter",
"description": "A Craft CMS starter project by Sean Smith",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"type": "project",
"license": "MIT",
"minimum-stability": "beta",
"require": {
"clubstudioltd/craft-asset-rev": "^8.0.0",
"craftcms/ckeditor": "^4.0.3",
"craftcms/cms": "^5.0.0",
"craftcms/contact-form": "^3.1.0",
"doublesecretagency/craft-cpcss": "^3.0.0",
"mmikkel/retcon": "^3.0.0",
"nystudio107/craft-minify": "^5.0.0-beta.2",
"nystudio107/craft-seomatic": "^5.0.0-beta.8",
"nystudio107/craft-typogrify": "^5.0.0-beta.2",
"putyourlightson/craft-sprig": "^3.0.0-beta.2",
"verbb/hyper": "^2.0.0-beta.7",
"verbb/knock-knock": "^3.0.0-beta.1",
"vlucas/phpdotenv": "^5.4.0"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/",
"modules\\sitemodule\\": "modules/sitemodule/src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php craft setup/security-key",
"@php craft setup/app-id"
],
"nuke": [
"rm -rf vendor/ && composer clear-cache && composer install"
]
}
}