vardot / drupal-core-patches
Curated Drupal core patches used by Varbase, one branch per Drupal core major.minor version.
Package info
github.com/Vardot/drupal-core-patches
Type:metapackage
pkg:composer/vardot/drupal-core-patches
Requires
- cweagans/composer-patches: ~1.7.0 || ~2.0
- drupal/core: ~12.0.0
This package is auto-updated.
Last update: 2026-06-28 07:40:39 UTC
README
Why this package:
vardot/drupal-core-patchesis required byvardot/varbase-patchesso that Varbase can upgrade to the latest Drupal core versions. It maintains the right set of working Drupal core patches per Drupal core version (one branch per major.minor), so each Varbase line automatically gets the patches that apply to its Drupal core.
Curated Drupal core patches used by Varbase,
delivered as a Composer metapackage with one git branch per Drupal core MAJOR.MINOR
version (e.g. 11.3.x, 10.6.x). Consumed by
vardot/varbase-patches so that core patches are
versioned and resolved independently of the Varbase line.
- Patches are declared under
extra.patches."drupal/core"and applied bycweagans/composer-patchesvia the Varbase Patches plugin (which allowlists this package). - Each core-minor branch carries only the patches valid for that exact Drupal core minor and
uses
conflict: { "drupal/core": "<minor.0 || >=next.0" }to bind itself to that minor, so Composer always selects the release matching the installed core. - The actual
.patchfiles live on thepatchesbranch and are referenced by raw URL (the same modelvarbase-patchesuses for its patch files).
Usage
composer require vardot/drupal-core-patches:~11.3.0
varbase-patches does this for you. To allow Composer to pick the release matching the site's core,
it requires a range that spans the supported majors:
| varbase-patches branch | Drupal core | requires |
|---|---|---|
| 9.1.x, 9.2.x, 10.0.x | ~10.6 | vardot/drupal-core-patches: ~10 || ~11 || ~12 |
| 10.1.x, 11.0.x | ~11.3 | vardot/drupal-core-patches: ~11 || ~12 |
Branch per Drupal core major.minor
| Drupal core | Branch | Patch count |
|---|---|---|
| ~11.3 | 11.3.x |
19 |
| ~10.6 | 10.6.x |
17 |
| (files) | patches |
shared .patch file store |
Add a new branch (e.g. 11.4.x) when supporting a new Drupal core minor — see
docs/adding-a-core-version.md.