-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.42 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
{
"name": "madhouse/craft-starter",
"description": "A Craft CMS boilerplate.",
"version": "2.0.0",
"authors": [
{
"name": "Madhouse",
"homepage": "https://madmadmad.com"
}
],
"require": {
"craftcms/aws-s3": "^1.2.11",
"craftcms/cms": "3.7.38",
"craftcms/feed-me": "^4.3.4",
"craftcms/redactor": "2.10.6",
"doublesecretagency/craft-cpcss": "^2.2.1",
"ether/seo": "3.7.4",
"misterbk/mix": "^1.5",
"nystudio107/craft-imageoptimize": "^1.6",
"nystudio107/craft-retour": "^3.1.45",
"nystudio107/craft-seomatic": "^3.3.29",
"nystudio107/craft-twigpack": "^1.2",
"nystudio107/craft-typogrify": "^1.1.18",
"putyourlightson/craft-blitz": "^3.7.0",
"putyourlightson/craft-sprig": "^1.3.1",
"sebastianlenz/linkfield": "^1.0.23",
"supercool/buttonbox": "^2.0.4",
"verbb/icon-picker": "^1.1.9",
"verbb/super-table": "^2.6.2",
"vlucas/phpdotenv": "^3.4.0"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.3"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}