forked from FreelyGive/contacts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.54 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
{
"name": "drupal/contacts",
"description": "Creates a contacts list using decoupled users.",
"type": "drupal-module",
"license": "GPL-2.0+",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"cweagans/composer-patches": "~1.0",
"drupal/core": "^8.3",
"drupal/profile": "1.x-dev",
"drupal/address": "~1.0-rc4",
"drupal/page_manager": "~1.0-alpha24",
"drupal/panels": "~3.0-beta6",
"drupal/search_api": "~1.0-rc1",
"drupal/facets": "1.x-dev",
"drupal/decoupled_auth": "1.x-dev",
"drupal/contacts_theme": "1.x-dev",
"drupal/ctools": "~3.0-beta1"
},
"autoload": {
"psr-4": {
"Drupal\\contacts\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\contacts\\": "tests/src"
}
},
"extra": {
"patches": {
"drupal/core": {
"#2865059: Multiple machine name elements from same source": "https://www.drupal.org/files/issues/2865059-allow_multiple_machine_name_per_source.patch",
"#736066: ajax.js insert command sometimes wraps content in a div": "https://www.drupal.org/files/issues/736066-165.patch"
},
"drupal/ctools": {
"#2667652: Option to expose filters in block on views block display": "https://www.drupal.org/files/issues/ctools-option_to_expose-2667652-3.patch",
"#2866323 & #2865709: Fatal error on empty entity reference relationship": "https://www.drupal.org/files/issues/2866323-fix_entity_relationship_with_no_value.patch"
}
}
}
}