-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (34 loc) · 1.3 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
{
"name": "dpc-sdp/tide_authenticated_content",
"description": "Allows content administrators to protect pages and sections with user authentication",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"require": {
"dpc-sdp/tide_core": "^4.0.0",
"dpc-sdp/tide_event": "^4.0.0",
"dpc-sdp/tide_landing_page": "^4.0.0",
"dpc-sdp/tide_media": "^4.0.0",
"dpc-sdp/tide_site": "^4.0.0",
"drupal/jsonapi_extras": "^3.8",
"drupal/jwt": "^1.0",
"drupal/permissions_by_term": "^3.1"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/10"
}
},
"minimum-stability": "alpha",
"prefer-stable": true,
"extra": {
"patches": {
"drupal/jwt": {
"Adding configuration for the JWT timeout - https://www.drupal.org/project/jwt/issues/2782571#comment-14484194": "https://www.drupal.org/files/issues/2022-04-17/2782571-37.patch"
},
"drupal/key": {
"KeyProviderInterface::getKeyValue() doesn't always return a string - https://www.drupal.org/project/key/issues/3356052#comment-15030602": "https://git.drupalcode.org/project/key/-/merge_requests/11/diffs.patch"
}
}
}
}