forked from nystudio107/craft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.6 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
{
"name": "nystudio107/craft",
"description": "nystudio107 Craft 3 CMS scaffolding project",
"version": "1.0.15",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "MIT",
"homepage": "https://craftcms.com/",
"type": "project",
"support": {
"email": "[email protected]",
"issues": "https://github.com/nystudio107/craft/issues",
"source": "https://github.com/nystudio107/craft",
"docs": "https://github.com/nystudio107/craft"
},
"minimum-stability": "RC",
"require": {
"craftcms/cms": "^3.0.0",
"vlucas/phpdotenv": "^2.4.0",
"yiisoft/yii2-redis": "^2.0.6",
"nystudio107/craft3-multi-environment": "^1.0.5",
"nystudio107/craft-scripts": "^1.2.4",
"nystudio107/craft-eagerbeaver": "^1.0.0",
"nystudio107/craft-imageoptimize": "^1.3.2",
"nystudio107/craft-minify": "^1.2.5",
"nystudio107/craft-routemap": "^1.0.0",
"nystudio107/craft-seomatic": "^1.0.0",
"nystudio107/craft-typogrify": "^1.1.1",
"ostark/craft-async-queue": "^1.3.0"
},
"autoload": {
"psr-4": {
"modules\\sitemodule\\": "modules/sitemodule/src/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.0"
}
},
"scripts": {
"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": [
"@php nys-setup update"
],
"post-install-cmd": [
"@php nys-setup update"
]
}
}