When working with Drupal you will, sooner rather than later, have to apply a patch on some project.
To make this work, you first need to require the cweagans/composer-patches package:
composer require cweagans/composer-patches
After this package is installed, add the following lines to the composer.json file:
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"patch information": "patch url or path"
}
}
}
And run:
composer install
Here's an example of my composer.json file for a project I am working on: https://gist.github.com/tinamrak/44d1c966cdb860ffd808608c583f9281. I usually add the issue name and link to the comment as "patch information" for easier reference.
Did you find this article useful?
Buy me a coffee.
Do you have a web development problem you cannot seem to be able to solve?
Send me an email or reach out to me on Twitter.