-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.32 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
{
"name": "clubstudioltd/craft",
"description": "Craft CMS",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "0BSD",
"homepage": "https://craftcms.com/",
"type": "project",
"support": {
"email": "dev@clubstudio.co.uk",
"issues": "https://github.com/clubstudioltd/craft/issues",
"source": "https://github.com/clubstudioltd/craft",
"docs": "https://github.com/clubstudioltd/craft"
},
"require": {
"born05/craft-sentry": "2.0.0-beta.1",
"clubstudioltd/craft-asset-rev": "^7.0",
"craftcms/cms": "^4.0.0.1",
"craftcms/redactor": "^3.0",
"nystudio107/craft-minify": "^4.0.0-beta.2",
"nystudio107/craft-seomatic": "^4.0.0-beta.8",
"vlucas/phpdotenv": "^5.4.0"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@composer dump-autoload -o",
"@php craft setup/welcome"
]
}
}