Add core config patch

This commit is contained in:
Oliver Davies 2020-05-15 01:41:42 +01:00
parent 2f730f21b5
commit 12297e2305
4 changed files with 77 additions and 9 deletions

View file

@ -16,6 +16,7 @@
],
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal/admin_toolbar": "^2.0",
"drupal/config_ignore": "^2.2",
"drupal/config_split": "^1.4",
@ -77,14 +78,35 @@
}
},
"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"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
"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"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"patches": {
"drupal/core": {
"Drupal 8.7.10 to 8.8.0 update fails if views have invalid configuration": "https://www.drupal.org/files/issues/2020-05-11/3100712-views-36-PASS.patch"
}
}
}
}