-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1007 Bytes
/
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": "palantirnet/workbench_reviewer",
"description": "Allows content editors to assign content to another user for review",
"license": "GPL-2.0+",
"type": "drupal-module",
"homepage": "https://github.com/patrickfweston/workbench_reviewer",
"authors": [
{
"name": "Patrick Weston",
"email": "[email protected]"
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"cweagans/composer-patches": "~1.0",
"drupal/core": "*"
},
"config": {
"preferred-install": {
"*": "dist"
}
},
"extra": {
"patches": {
"drupal/core": {
"Hook entity_field_storage_info is broken (https://www.drupal.org/node/2584729)": "https://www.drupal.org/files/issues/core-entity-sql-content-entity-storage-2583111-1_0.patch"
}
}
}
}