-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
128 lines (128 loc) · 4.46 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
{
"name": "famehelsinki/elastic",
"description": "Elasticsearch local development template",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.3.0",
"drupal/core-composer-scaffold": "^10",
"drupal/core-project-message": "^10",
"drupal/core-recommended": "^10",
"drupal/devel": "^5",
"drupal/elasticsearch_connector": "^7",
"drupal/geolocation": "^3.11",
"drupal/search_api": "^1.28",
"drupal/search_api_location": "^1.0-dev",
"drupal/search_api_solr": "^4.2.10",
"drupal/token": "^1.10",
"drush/drush": "^11",
"itamair/geophp": "^1.3"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"drupal/core-dev": "^10",
"drupal/coder": "~8.3.13",
"mglaman/drupal-check": "^1.2",
"mglaman/phpstan-drupal": "^1.1",
"phpspec/prophecy-phpunit": "^2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"phpstan/extension-installer": true,
"php-http/discovery": true,
"mglaman/composer-drupal-lenient": true
}
},
"scripts": {
"post-install-cmd": [
"cp dist.phpunit.xml web/core/phpunit.xml"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patches": {
"drupal/elasticsearch_connector": {
"3116153 - Add support for geofield mapping": "https://www.drupal.org/files/issues/2020-11-17/elasticsearch_connector-support_geofield-3116153-3.patch"
},
"drupal/search_api_location": {
"3327503 - Fix composer.json - geophp should be a normal dependency, remove itamair/geophp - once MR is merged.": "https://git.drupalcode.org/project/search_api_location/-/merge_requests/7.diff"
}
},
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[project-root]/.gitattributes": false,
"[project-root]/.editorconfig": false,
"[web-root]/example.gitignore": false,
"[web-root]/modules/README.txt": false,
"[web-root]/themes/README.txt": false,
"[web-root]/profiles/README.txt": false,
"[web-root]/sites/README.txt": false,
"[web-root]/.gitignore": false,
"[web-root]/sites/.gitignore": false,
"[web-root]/sites/default/default.settings.php": false,
"[web-root]/sites/development.services.yml": false,
"[web-root]/INSTALL.txt": false
}
},
"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/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
}
}
}