-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.01 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
{
"name": "giorgiopogliani/craftcms-starter-template",
"description": "Craft CMS Template",
"keywords": [
"craft",
"cms",
"craftcms",
"project",
"template"
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"craftcms/cms": "^3.7",
"craftcms/redactor": "2.8.7",
"ether/seo": "3.7.3",
"nystudio107/craft-vite": "^1.0",
"pennebaker/craft-architect": "2.4.2",
"performing/twig-components": "^0.5.0",
"sebastianlenz/linkfield": "1.0.25",
"vlucas/phpdotenv": "^3.4.0"
},
"require-dev": {
"deployer/deployer": "^7.0",
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@composer dump-autoload -o",
"@php craft setup/welcome"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}