forked from Islandora-Devops/islandora-starter-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·152 lines (152 loc) · 5.02 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
{
"name": "islandora/islandora-starter-site",
"description": "Project template for Islandora sites.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.islandora.ca",
"support": {
"docs": "https://islandora.github.io/documentation/",
"chat": "https://www.islandora.ca/community#channels-of-communication"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "library/pdf.js",
"version": "2.16.105",
"type": "drupal-library",
"dist": {
"url": "https://github.com/mozilla/pdf.js/releases/download/v2.16.105/pdfjs-2.16.105-dist.zip",
"type": "zip"
}
}
},
{
"type": "vcs",
"url": "https://github.com/digitalutsc/advanced_search.git"
}
],
"require": {
"php": "^7.4 || ^8",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.1",
"drupal/better_exposed_filters": "^6.0",
"drupal/bibcite": "^2.0@beta",
"drupal/citation_select": "^1.0@beta",
"drupal/core-composer-scaffold": "^9.4",
"drupal/core-recommended": "^9.4",
"drupal/facets": "^2",
"drupal/field_group": "^3",
"drupal/field_permissions": "^1",
"drupal/field_report": "^2.1",
"drupal/flysystem": "^2.0@alpha",
"drupal/hal": "^1.0||^2.0",
"drupal/matomo": "^1.19",
"drupal/pdf": "^1.1",
"drupal/rest_oai_pmh": "^2.0@beta",
"drupal/search_api_solr": "^4.2",
"drupal/taxonomy_manager": "^2.0",
"drupal/term_merge": "^2.0@beta",
"drupal/transliterate_filenames": "^2.0",
"drupal/twig_tweak": "^3.2",
"drupal/views_data_export": "^1.2",
"drupal/views_field_view": "^1.0@beta",
"drush/drush": "^10.3",
"islandora-rdm/islandora_fits": "dev-8.x-1.x as 1.x-dev",
"islandora/advanced_search": "dev-contrib",
"islandora/controlled_access_terms": "^2",
"islandora/islandora": "^2.8.1",
"islandora/openseadragon": "^2",
"islandora/views_nested_details": "^1.0",
"library/pdf.js": "^2.4",
"mjordan/islandora_workbench_integration": "^1.0",
"digitalutsc/group_solr": "^1.0.0@beta",
"digitalutsc/islandora_group": "^1.0.0@beta",
"digitalutsc/private_files_adapter": "^1.0.0@beta"
},
"conflict": {
"drupal/drupal": "*",
"drupal/core": "<=8"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"discard-changes": "stash",
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true,
"platform": {
"php": "7.4"
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/sites/default/settings.php": {
"mode": "append",
"default": "web/core/assets/scaffold/files/default.settings.php",
"append": "assets/patches/default_settings.txt"
}
}
},
"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"
]
},
"patches": {
"islandora/openseadragon": {
"openseadragon.authentication.patch": "https://raw.githubusercontent.com/digitalutsc/private_files_adapter/main/scripts/openseadragon.authentication.patch"
}
}
},
"scripts": {
"post-root-package-install": ["Islandora\\StarterSite::rootPackageInstall"]
},
"require-dev": {
"drupal/config_inspector": "^2.1",
"drupal/devel": "^5.0",
"drupal/restui": "^1.21"
},
"autoload": {
"classmap": [
"assets/IslandoraStarterSite.php"
]
}
}