-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.22 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
46
47
48
49
50
{
"require": {
"craftcms/ckeditor": "4.1.0",
"craftcms/cms": "5.2.8",
"craftcms/postmark": "^3.1",
"nystudio107/craft-retour": "5.0.2",
"nystudio107/craft-seomatic": "5.1.1",
"nystudio107/craft-vite": "5.0.0",
"putyourlightson/craft-sprig": "3.1.0",
"vaersaagod/dospaces": "3.0.0-beta.1",
"viget/craft-classnames": "3.0.0",
"vlucas/phpdotenv": "^5.6.0"
},
"require-dev": {
"craftcms/generator": "^2.0.0",
"yiisoft/yii2-shell": "^2.0.3"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true,
"treeware/plant": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.3"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"repositories": [
{
"type": "composer",
"url": "https://composer.craftcms.com",
"canonical": false
}
],
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"modules\\supportmodule\\": "modules/support-module/",
"sprig\\components\\": "sprig/components/",
"modules\\api\\": "modules/api/"
}
}
}