-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 996 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
{
"require": {
"craftcms/cms": "4.1.4.1",
"craftcms/commerce": "4.1.2",
"craftcms/commerce-paypal-checkout": "2.1.0.1",
"craftcms/commerce-stripe": "^3.0",
"craftcms/redactor": "^3.0",
"nystudio107/craft-seomatic": "^4.0",
"sebastianlenz/linkfield": "2.1.3-rc",
"vlucas/phpdotenv": "^5.4.0"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/",
"modules\\fc\\": "modules/fc"
}
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}