-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.85 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
{
"name": "smthdiff/craft",
"description": "Craft CMS made for Devs",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "MIT",
"homepage": "https://craftcms.com/",
"type": "project",
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftcms/cms/issues",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/cms",
"docs": "https://craftcms.com/docs",
"rss": "https://craftcms.com/changelog.rss"
},
"require": {
"born05/craft-sentry": "^1.0",
"born05/craft-twofactorauthentication": "^2.1.2",
"craftcms/cms": "^3.6.0",
"craftcms/element-api": "^2.5.4",
"craftcms/redactor": "^2.3.2",
"craftcms/webhooks": "^2.3",
"ether/seo": "^3.5.4",
"jalendport/craft-fetch": "^1.3",
"jalendport/craft-updatechecker": "^1.2.0",
"nystudio107/craft-minify": "^1.2.9",
"percipioglobal/craft-colour-swatches": "^1.3.3",
"putyourlightson/craft-blitz-recommendations": "^1.0",
"smthdiff/craft-encore": "^1.0.0",
"verbb/field-manager": "^2.0.5",
"vlucas/phpdotenv": "^3.4.0",
"wrav/oembed": "^1.1.4",
"xpertbot/craft-wheelform": "^2.3"
},
"require-dev": {
"yiisoft/yii2-shell": "^2.0.3"
},
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@composer dump-autoload -o"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-update-cmd": [
"@php craft clear-caches/all"
],
"post-install-cmd": [
"@php craft clear-caches/all"
]
}
}