-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 1.43 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
{
"name": "ademers/craft-starter",
"description": "A Craft CMS starter project by Andrea DeMers.",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"type": "project",
"version": "1.4.4",
"license": "MIT",
"require": {
"craftcms/cms": "3.7.43",
"craftcms/contact-form": "2.5.1",
"craftcms/redactor": "2.10.8",
"nystudio107/craft-minify": "1.2.11",
"nystudio107/craft-scripts": "1.2.10",
"nystudio107/craft-seomatic": "3.4.30",
"nystudio107/craft-vite": "1.0.25",
"putyourlightson/craft-sprig": "1.13.0",
"vlucas/phpdotenv": "^3.4.0",
"yiisoft/yii2-redis": "^2.0"
},
"autoload": {
"psr-4": {
"modules\\": "modules/",
"modules\\sitemodule\\": "modules/sitemodule/src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.16"
},
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true,
"treeware/plant": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@composer dump-autoload -o",
"@php craft setup/welcome"
]
}
}