-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.07 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
{
"name": "craftquest/craft-commerce-starter",
"description": "This is a starter project for Craft Commerce sites. It includes some basic plugins you'll need to get started with e-commerce sites powered by Craft Commerce.",
"version": "1.0.2",
"type": "project",
"require": {
"craftcms/aws-s3": "^1.2",
"craftcms/cms": "^3.4.0",
"craftcms/commerce": "^3.1",
"craftcms/commerce-stripe": "^2.3",
"craftcms/contact-form": "^2.2",
"craftcms/contact-form-honeypot": "^1.0",
"craftcms/digital-products": "^2.4",
"nystudio107/craft-cookies": "^1.1",
"nystudio107/craft-imageoptimize": "^1.6",
"nystudio107/craft-seomatic": "^3.3",
"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.0"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}