-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
53 lines (53 loc) · 1.29 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
51
52
53
{
"name": "madebyshape/craft-cms",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"craftcms/ckeditor": "^4.0.3",
"craftcms/cms": "5.0.3",
"craftcms/mailgun": "^3.1.0",
"nystudio107/craft-minify": "^5.0.0-beta.2",
"nystudio107/craft-seomatic": "^5.0.0-beta.8",
"nystudio107/craft-vite": "^5.0.0-beta.3",
"putyourlightson/craft-blitz": "5.0.0",
"putyourlightson/craft-sprig": "3.0.0",
"servd/craft-asset-storage": "^4.0.3",
"spacecatninja/imager-x": "5.0.0",
"verbb/formie": "^3.0.0-beta.5",
"verbb/hyper": "^2.0.0-beta.7",
"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
}
]
}