-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 930 Bytes
/
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
{
"require": {
"craftcms/cms": "^3.6.4",
"craftcms/element-api": "2.6.0",
"craftcms/redactor": "2.6.1",
"nystudio107/craft-minify": "1.2.10",
"nystudio107/craft-scripts": "^1.2.4",
"nystudio107/craft-twigpack": "1.2.12",
"nystudio107/craft-typogrify": "1.1.18",
"sebastianlenz/linkfield": "1.0.25",
"verbb/expanded-singles": "1.1.3",
"verbb/field-manager": "2.2.2",
"verbb/super-table": "2.6.7",
"vlucas/phpdotenv": "^3.4.0",
"yiisoft/yii2-redis": "^2.0.6",
"ext-imagick": "*"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}