-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
113 lines (113 loc) · 3.19 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
{
"name": "apigee/apigee_openbank_devportal_kickstart",
"description": "A fast demo and starting point for Apigee Developer Portals.",
"type": "drupal-profile",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"swagger-api/swagger-ui": {
"type": "package",
"package": {
"name": "swagger-api/swagger-ui",
"version": "3.22.0",
"type": "drupal-library",
"dist": {
"url": "https://github.com/swagger-api/swagger-ui/archive/v3.22.0.zip",
"type": "zip"
},
"require": {
"composer/installers": "^1.2.0"
}
}
},
"antennaio/jquery-bar-rating": {
"type": "package",
"package": {
"name": "antennaio/jquery-bar-rating",
"version": "1.2.2",
"type": "drupal-library",
"dist": {
"type": "zip",
"url": "https://github.com/antennaio/jquery-bar-rating/archive/v1.2.2.zip"
}
}
}
},
"require": {
"php": "^7.1",
"antennaio/jquery-bar-rating": "^1.2",
"cweagans/composer-patches": "~1",
"drupal-composer/drupal-scaffold": "^2",
"drupal/admin_toolbar": "^1.0",
"drupal/adminimal_admin_toolbar": "^1.9",
"drupal/apigee_edge": "1.x-dev",
"drupal/better_exposed_filters": "^3.0@alpha",
"drupal/core": "^8.6.0",
"drupal/default_content": "^1.0@alpha",
"drupal/fontawesome": "^2.12",
"drupal/paragraphs": "^1.6",
"drupal/pathauto": "^1.3",
"drupal/svg_image": "^1.9",
"drupal/swagger_ui_formatter": "2.x-dev",
"drupal/votingapi_widgets": "^1.0@alpha",
"swagger-api/swagger-ui": "^3.21",
"drupal/swiftmailer": "^1.0@beta",
"drupal/metatag": "^1.8",
"drupal/radix": "^4.2",
"drupal/registration_link": "^1.0",
"drupal/twig_tweak": "^2.3",
"drupal/quick_node_clone": "^1.11"
},
"require-dev": {
"drush/drush": "~9",
"drupal/coder": "~8"
},
"config": {
"sort-packages": true,
"preferred-install": {
"drupal/core": "dist"
}
},
"scripts": {
"post-install-cmd": [
"@composer drupal-scaffold"
],
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
},
"extra": {
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"`EntityViewBuilder::getBuildDefaults()` doesn't check for `RevisionableInterface`.": "https://www.drupal.org/files/issues/2019-01-10/2951487_15_no-tests.patch"
},
"drupal/better_exposed_filters": {
"Fix issue with #summary_details introduced in Drupal 8.6.x": "https://www.drupal.org/files/issues/2018-10-05/bef-summary-attributes-3001967-4.patch"
}
},
"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"
]
},
"enable-patching": true
}
}