-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.22 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
{
"name": "drupal/office365_calendar",
"type": "drupal-module",
"description": "Module provides Office365 calendar API integration for fetching user events to local view. Uses OAuth 2.0 for authentication and FullCalendar.js for display.",
"keywords": ["Drupal"],
"license": "GPL-2.0+",
"homepage": "https://www.drupal.org/project/office365_calendar",
"minimum-stability": "dev",
"support": {
"issues": "https://www.drupal.org/project/issues/office365_calendar",
"source": "http://cgit.drupalcode.org/office365_calendar"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"stevenmaguire/oauth2-microsoft": "^0.2.1",
"drupal/fullcalendar_api": "8.*",
"drupal/encrypt": "8.*",
"drupal/profile": "8.*"
},
"extra": {
"patches": {
"drupal/real_aes": {
"D8 - Update module to use Defuse PHP Encryption 2.0": "https://www.drupal.org/files/issues/d8_update_module_to-2727845-11-do-not-test.patch"
},
"drupal/profile": {
"Limiting of profiles on a role basis works only for non-locked roles": "https://www.drupal.org/files/issues/include-locked-roles-2662112-1.patch"
}
}
}
}