forked from nystudio107/devmode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.88 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
{
"name": "nystudio107/devmode",
"description": "Website for the devMode.fm podcast",
"version": "1.1.2",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "MIT",
"homepage": "https://devMode.fm/",
"type": "project",
"support": {
"email": "[email protected]",
"issues": "https://github.com/nystudio107/devmode/issues",
"source": "https://github.com/nystudio107/devmode",
"docs": "https://github.com/nystudio107/devmode"
},
"minimum-stability": "beta",
"prefer-stable": true,
"require": {
"craftcms/cms": "^3.2.0",
"vlucas/phpdotenv": "^2.4.0",
"yiisoft/yii2-redis": "^2.0.6",
"nystudio107/craft-imageoptimize": "^1.0.0",
"nystudio107/craft-fastcgicachebust": "^1.0.0",
"nystudio107/craft-icalendar": "^1.1.0",
"nystudio107/craft-minify": "^1.2.5",
"nystudio107/craft-typogrify": "^1.1.4",
"nystudio107/craft-transcoder": "^1.0.9",
"nystudio107/craft-disqus": "^1.1.1",
"nystudio107/craft-retour": "^3.0.0",
"nystudio107/craft-seomatic": "^3.2.0",
"nystudio107/craft-scripts": "^1.2.4",
"nystudio107/craft-webperf": "^1.0.0",
"nystudio107/craft-twigpack": "^1.1.0",
"nystudio107/dotenvy": "^1.0.0"
},
"autoload": {
"psr-4": {
"modules\\sitemodule\\": "modules/sitemodule/src/"
}
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "7.0"
}
},
"scripts": {
"craft-update": [
"@php nys-setup update",
"@php craft migrate/all",
"@php craft project-config/sync",
"@php craft clear-caches/all"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php craft setup/welcome",
"@php nys-setup welcome"
],
"post-update-cmd": "@craft-update",
"post-install-cmd": "@craft-update"
}
}