forked from Vardot/varbase-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
156 lines (155 loc) · 5.71 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "vardot/varbase-project",
"description": "Project template for Varbase distribution.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Vardot",
"homepage": "https://github.com/vardot",
"role": "Maintainer"
}
],
"support": {
"issues": "http://drupal.org/project/issues/varbase",
"source": "http://cgit.drupalcode.org/varbase"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"composer-patches": {
"type": "vcs",
"url": "https://github.com/vardot/composer-patches"
}
},
"require": {
"composer/installers": "~1.0 || ~2.0",
"oomphinc/composer-installers-extender": "~1.0 || ~2.0",
"cweagans/composer-patches": "~1.0",
"drupal/core-composer-scaffold": "^9",
"drupal/core-project-message": "^9",
"webflo/drupal-finder": "~1.0",
"webmozart/path-util": "~2.0",
"vardot/varbase": "9.0.x-dev",
"vardot/varbase-updater": "2.x-dev"
},
"require-dev": {
"drupal/core-dev": "~9.0",
"drush/drush": "~10.0"
},
"config": {
"bin-dir": "bin/",
"secure-http": false,
"optimize-autoloader": true,
"preferred-install": {
"drupal/core": "dist"
}
},
"scripts": {
"post-install-cmd": [
"Varbase\\composer\\ScriptHandler::createRequiredFiles",
"Varbase\\composer\\ScriptHandler::removeGitDirectories"
],
"post-update-cmd": [
"Varbase\\composer\\ScriptHandler::createRequiredFiles",
"Varbase\\composer\\ScriptHandler::removeGitDirectories"
],
"post-drupal-scaffold-cmd": ["Varbase\\composer\\ScriptHandler::postDrupalScaffoldProcedure"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"conflict": {
"drupal/drupal": "*"
},
"extra": {
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "docroot/"
}
},
"drupal-core-project-message": {
"include-keys": ["homepage", "support"],
"post-create-project-cmd-message": [
"<bg=blue;fg=white> </>",
"<bg=blue;fg=white> Congratulations, you’ve installed the Varbase codebase </>",
"<bg=blue;fg=white> from the vardot/varbase-project template! </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",
" * Install the site: https://www.drupal.org/docs/installing-drupal",
" * Read the user guide: https://docs.varbase.vardot.com",
" * Get support: https://www.vardot.com/en/form/get-support-varbase",
" * Join Our Slack Team for Feedback and Support:",
" http://slack.varbase.vardot.com",
" * Remove the plugin that prints this message:",
" composer remove drupal/core-project-message"
]
},
"_readme": [
"NOTICE: We're now using composer patches from Vardot repository to suggest",
"several fixes and better handling of patches in your Drupal project.",
"You'll notice that we have included (https://github.com/vardot/composer-patches)",
"in this composer.json repositories. This will replace the original",
"library (cweagans/composer-patches) with our own from (vardot/composer-patches).",
"See https://github.com/cweagans/composer-patches/pull/243 and more details",
"on our changes on the composer-patches package. Once our changes get merged,",
"we will revert to using (cweagans/composer-patches) without this override."
],
"branch-alias": {
"dev-9.0.x": "9.0.x-dev",
"dev-10.0.x": "10.0.x-dev"
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/profiles/{$name}": ["type:drupal-profile"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"docroot/libraries/slick": ["npm-asset/slick-carousel"],
"docroot/libraries/ace": ["npm-asset/ace-builds"],
"docroot/libraries/jquery-ui-touch-punch": ["bower-asset/jqueryui-touch-punch"],
"docroot/libraries/swagger-ui/dist": ["npm-asset/swagger-ui-dist"],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"docroot/modules/custom/{$name}": ["type:drupal-custom-module"],
"docroot/themes/custom/{$name}": ["type:drupal-custom-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"drupal-libraries": {
"library-directory": "docroot/libraries",
"libraries": [
{"name": "objectfitpolyfill", "package": "bower-asset/objectfitpolyfill"},
{"name": "chartjs", "package": "bower-asset/chartjs"},
{"name": "c3","package": "bower-asset/c3"},
{"name": "d3", "package": "bower-asset/d3"},
{"name": "dropzone","package": "npm-asset/dropzone"},
{"name": "blazy", "package": "npm-asset/blazy"},
{"name": "slick", "package": "npm-asset/slick-carousel"},
{"name": "ace", "package": "npm-asset/ace-builds"},
{"name": "jquery-ui-touch-punch", "package": "bower-asset/jqueryui-touch-punch"},
{"name": "imagesloaded", "package": "npm-asset/imagesloaded"},
{"name": "swagger-ui", "package": "npm-asset/swagger-ui-dist"}
]
},
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
}
}
}