-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "mostlyserious/ms-craft",
"description": "A Craft CMS Starter",
"type": "project",
"license": "Unlicense",
"repositories": [
{
"type": "path",
"url": "/Users/cornelius/Git/@mostlyserious/craft-promptly"
},
{
"type": "vcs",
"url": "[email protected]:mostlyserious/craft-s3-logger.git"
},
{
"type": "vcs",
"url": "[email protected]:mostlyserious/craft-block-audit.git"
},
{
"type": "composer",
"url": "https://composer.craftcms.com",
"canonical": false
}
],
"require": {
"born05/craft-sentry": "2.0.1",
"craftcms/aws-s3": "2.0.3",
"craftcms/cms": "4.5.11.1",
"craftcms/redactor": "3.0.4",
"hillholliday/craft-user-manual": "4.0.0",
"nystudio107/craft-retour": "4.1.13",
"nystudio107/craft-seomatic": "4.0.31",
"percipioglobal/craft-colour-swatches": "4.3.0",
"percipioglobal/craft-password-policy": "4.1.0",
"putyourlightson/craft-sendgrid": "2.0.1",
"spicyweb/craft-embedded-assets": "3.1.8",
"spicyweb/craft-neo": "3.8.6",
"topshelfcraft/environment-label": "4.0.3",
"verbb/expanded-singles": "2.0.5",
"verbb/hyper": "1.1.11",
"verbb/icon-picker": "2.0.13",
"verbb/smith": "2.0.0",
"vlucas/phpdotenv": "^5.4.0"
},
"autoload": {
"psr-4": {
"Modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true,
"treeware/plant": true,
"php-http/discovery": true,
"fortrabbit/craft-auto-migrate": true
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"copy('.env.example', '.env');\"",
"@composer dump-autoload -o",
"@php craft setup/keys"
]
}
}