This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
122 lines (122 loc) · 4.49 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
{
"name": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "simeydotme/jquery-ui-slider-pips",
"version": "1.11.3",
"type": "drupal-library",
"dist": {
"url": "https://github.com/simeydotme/jQuery-ui-Slider-Pips/archive/v1.11.3.zip",
"type": "zip"
},
"require": {
"composer/installers": "^1.2.0"
}
}
}
],
"require": {
"composer/installers": "^1.2",
"consolidation/annotated-command": "2.12",
"cweagans/composer-patches": "^1.6",
"drupal-composer/drupal-scaffold": "^2.2",
"drupal/better_exposed_filters": "^3.0@alpha",
"drupal/bootstrap": "^3.20",
"drupal/console": "^1.0.2",
"drupal/core": "~8.6",
"drupal/ctools": "^3.0",
"drupal/editor_file": "^1.2",
"drupal/edw_healthcheck": "^1.6",
"drupal/eu_cookie_compliance": "^1.8",
"drupal/facets": "^1.4",
"drupal/field_delimiter": "^1.0",
"drupal/google_analytics": "^2.2",
"drupal/linkit": "~5.0",
"drupal/mailsystem": "^4.1",
"drupal/menu_link_attributes": "^1.0",
"drupal/migrate_plus": "^4.0",
"drupal/migrate_tools": "^4.0",
"drupal/pathauto": "^1.2",
"drupal/recaptcha": "^2.4",
"drupal/search_api": "^1.14",
"drupal/search_api_attachments": "^1.0@beta",
"drupal/search_api_solr": "^3.4",
"drupal/smtp": "^1.0@beta",
"drupal/token": "^1.3",
"drupal/xmlsitemap": "^1.0@alpha",
"drush/drush": "^9.0.0",
"eaudeweb/heavy-lifter": "^1.3",
"simeydotme/jquery-ui-slider-pips": "^1.11",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"patches": {
"drupal/facets": {
"Create a multiple select dropdown widget": "https://www.drupal.org/files/issues/2019-05-09/facets-2811331-24-multiple-dropdown-widget-32.patch",
"No option for the user to choose from interface which operator AND/OR to apply between facet elements": "https://www.drupal.org/files/issues/2019-09-23/patch_exposed_operator.patch",
"Always display facet": "patches/always_display_facet.patch"
},
"drupal/captcha": {
"Undefined variable type in CAPTCHA examples": "https://www.drupal.org/files/issues/2019-10-30/3091082-2.patch",
"Captcha Session ID broken with cacheable captcha backends": "https://www.drupal.org/files/issues/2019-10-30/3089263-8.patch"
},
"drupal/field_delimiter": {
"Notice: Undefined index: field_delimiter": "https://www.drupal.org/files/issues/field-deleimiter-undefined-2926377.patch"
}
}
}
}