forked from ademers/craft-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.08 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
{
"name": "ademers/craft-starter",
"description": "A Craft CMS starter project by Andrea DeMers.",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"type": "project",
"version": "1.2.1",
"license": "MIT",
"require": {
"craftcms/cms": "3.5.14",
"craftcms/contact-form": "2.2.7",
"craftcms/redactor": "2.8.3",
"mmikkel/retcon": "2.2.1",
"nystudio107/craft-minify": "1.2.10",
"nystudio107/craft-scripts": "1.2.10",
"nystudio107/craft-seomatic": "3.3.22",
"nystudio107/craft-twigpack": "1.2.6",
"putyourlightson/craft-sprig": "1.0.3",
"vlucas/phpdotenv": "^3.4.0"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": 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"
]
}
}