forked from acquia/reservoir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.71 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
{
"name": "acquia/reservoir",
"description": "A backend for your frontend. Powered by Drupal.",
"type": "drupal-profile",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"cweagans/composer-patches": "^1.5.0",
"composer/installers": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"drupal/core": "~8.3.3",
"drupal/schemata": "1.x-dev#8325d172e1d6880aa24073f8f751ef089282cf9a",
"drupal/openapi": "1.x-dev#e8a82f87dbbb83dc89f9455f7a2e5ba6c6d2cdff",
"drupal/jsonapi": "1.0.0",
"drupal/simple_oauth": "2.0-rc2"
},
"scripts": {
"post-install-cmd": [
"@composer drupal-scaffold"
],
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
},
"extra": {
"patches": {
"drupal/core": {
"Fix toolbar active link handling": "https://www.drupal.org/files/issues/2885755-2-8.3.x.patch",
"field.storage.node.body belongs in 'standard' install profile, not in the 'node' module": "https://www.drupal.org/files/issues/2886861-2.patch"
},
"drupal/schemata": {
"Add entity type only schema routes for entity types with bundles": "https://www.drupal.org/files/issues/2870904-22.patch"
},
"drupal/simple_oauth": {
"simple_oauth cannot be installed in an install profile without also installing simple_oauth_extras": "https://www.drupal.org/files/issues/2883862-11.patch"
}
}
}
}