-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
151 lines (151 loc) · 5.01 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
{
"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"
}
}
}
],
"require": {
"php": "^7.4 || ^8",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"discoverygarden/dgi_image_discovery": "^1",
"drupal/admin_toolbar": "^3.1",
"drupal/advanced_search": "^2.1",
"drupal/better_exposed_filters": "^7.0",
"drupal/citation_select": "^2.0@beta",
"drupal/coi": "^4.0",
"drupal/config_update": "^2.0@alpha",
"drupal/context": "^5@RC",
"drupal/controlled_access_terms": "^2",
"drupal/core-composer-scaffold": "^10.1",
"drupal/core-recommended": "^10.1",
"drupal/facets": "^2",
"drupal/field_group": "^3",
"drupal/field_permissions": "^1",
"drupal/field_report": "^2.1",
"drupal/flysystem": "^2.2@alpha",
"drupal/fpa": "^4.0",
"drupal/hal": "^1.0||^2.0",
"drupal/islandora": "^2.8.1",
"drupal/islandora_mirador": "^2",
"drupal/openseadragon": "^2",
"drupal/pathauto": "^1.12",
"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/twig_tweak": "^3.2",
"drupal/views_data_export": "^1.2",
"drupal/views_field_view": "^1.0@beta",
"drush/drush": "^13",
"islandora-rdm/islandora_fits": "dev-8.x-1.x as 1.x-dev",
"islandora/views_nested_details": "^1.0",
"library/pdf.js": "^2.4",
"mjordan/islandora_workbench_integration": "dev-main"
},
"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
},
"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": {
"twistor/flysystem-stream-wrapper": {
"PHP 8.2 deprecation warning": "assets/patches/flysystem-stream-wrapper.patch"
},
"drupal/flysystem": {
"required_derivative_scheme https://www.drupal.org/project/flysystem/issues/3457193": "https://www.drupal.org/files/issues/2024-07-01/3378738-1.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"
]
}
}