widgetsburritos / drupal-patch-checker
A simple helper script for checking composer dependencies to ensure it's not adding hook_update_N() functions via patches.
Installs: 12 263
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 3
Open Issues: 1
Type:composer-plugin
Requires
- php: >=7.1
- composer-plugin-api: ^1.0 || ^2.0
Requires (Dev)
- composer/composer: ^1.0 || ^2.0
- composer/semver: ^1 || ^3
- drupal/coder: ^8.3
- phpunit/phpunit: ^7.4
This package is auto-updated.
Last update: 2025-03-29 00:41:30 UTC
README
A simple helper script for checking composer dependencies to ensure it's not adding hook_update_N()
functions via patches.
Why This Exists
I recently realized that using patches containing hook_update_N() is risky. Long story short, it could potentially create conflicts with other module updates, meaning some update hooks may never run at all. This can have some negative effects down the road. This script helps preempt those issues.
First Time Setup
Install this package as a dev dependency:
composer require --dev widgetsburritos/drupal-patch-checker
Then add the following to your composer.json
file:
"scripts": { "check:patch": [ "WidgetsBurritos\\DrupalPatchChecker\\DrupalPatchChecker::checkComposerFile" ], }
Checking Patches Manually
You can check your patches manually by running:
composer run check:patch
This will produce a result similar to this:
$ composer run check:patch > WidgetsBurritos\DrupalPatchChecker\DrupalPatchChecker::checkComposerFile Script WidgetsBurritos\DrupalPatchChecker\DrupalPatchChecker::checkComposerFile handling the check:patch event terminated with an exception [Exception] patches/language_hierarchy/language_hierarchy-limit_views_results-2825851-14.patch contains hook_update_N() on Line 50.
Checking Patches Automatically on Package Install/Update
If you want to prevent patches from getting installed altogether update your composer.json
file accordingly:
"scripts": { "check:patch": [ "WidgetsBurritos\\DrupalPatchChecker\\DrupalPatchChecker::checkComposerFile" ], "post-install-cmd": [ "composer run check:patch" ], "post-update-cmd": [ "composer run check:patch" ], }
Then the next time you run composer install
or composer update
if your project contains a patch with hook_update_N()
it will throw an exception.