-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.34 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.34 KB
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
51
52
53
54
{
"name": "madebyshape/craft-cms",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"craftcms/ckeditor": "^5.4.0",
"craftcms/cloud": "*",
"craftcms/cms": "^5.9.18",
"craftcms/mailgun": "^3.1.0",
"nystudio107/craft-minify": "^5.0.0-beta.2",
"nystudio107/craft-seomatic": "^5.1.21",
"nystudio107/craft-vite": "^5.0.0-beta.3",
"putyourlightson/craft-blitz": "^5.12.8",
"putyourlightson/craft-sprig": "^3.7.2",
"servd/craft-asset-storage": "^4.2.4.2",
"spacecatninja/imager-x": "^5.2.1",
"spacecatninja/imager-x-craft-cloud-transformer": "^1.0.1",
"verbb/formie": "^3.1.19",
"vlucas/phpdotenv": "^5.4.0"
},
"require-dev": {
"craftcms/generator": "^2.0.0",
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example.dev', '.env');\""
]
},
"repositories": [
{
"type": "composer",
"url": "https://composer.craftcms.com",
"canonical": false
}
]
}