-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 926 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
39
{
"require": {
"craftcms/cms": "4.5.11.1",
"craftcms/redactor": "3.0.4",
"deployer/deployer": "^6.8",
"ether/seo": "4.2.1",
"nystudio107/craft-emptycoalesce": "^4.0.0",
"nystudio107/craft-vite": "4.0.6",
"sebastianlenz/linkfield": "^2.1.5",
"studioespresso/craft-dumper": "^3.0.1",
"verbb/expanded-singles": "2.0.5",
"verbb/field-manager": "3.0.8",
"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": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}