creativestyle / composer-plugin-patchset
Composer plugin that automatically applies patches from a patchset package
Installs: 20 086
Dependents: 1
Suggesters: 0
Security: 0
Stars: 7
Watchers: 8
Forks: 4
Open Issues: 0
Type:composer-plugin
Requires (Dev)
- composer/composer: ~1.0
- composer/satis: ~1.0
- phpunit/phpunit: ^4.8.35 || ^5.7
README
Composer Plugin For Applying Patchsets
‼️ NEW Supports both composer branches v1.x and v2.x.
This plugin can automatically apply patches to any dependency of your project.
One of the most distinguishing features is that it can apply patches from special composer packages of type patchset
.
This is quite convenient as you can store all your patches in one repository and apply them automatically on all
systems including developers' machines in a very predictable way. Also you can easily distribute your patchset to the
whole community via packagist.
It's (kind-of) an alternative to two other great plugins:
Continue reading this document for more in-depth description or skip right away directly to:
Feature comparison table
1 Root package patching is the exception, please see applying patches to root package in usage docs.
Feature description
-
Apply patches from dedicated composer packages (package your patchset!).
-
Each patch can have a version constraint (composer semver) checked against the target package.
This means that you can (and should) have the patches fail the build if cannot be applied and still store patches for multiple package versions in the same patchset.
-
Apply patches using
patch
command and fall-back togit apply
if not available. -
Does not reinstall packages unnecessarily.
-
Reinstalls (cleans) packages which are patched but the patches have been removed guaranteeing a consistent state after multiple updates.
-
Will repatch packages even if order of patches for specific package (version) has changed.
-
Deduplicates patches on package level.
-
Does not overly tie into composer internals. All patching will be done after the main update/installation process at once execution making it simpler and easier to analyze.
This also means that you have the guarantee that the plugin / patches are at the latest version before the process even starts. Otherwise it's very tricky (if not impossible) to make the plugin behave consistently on the first composer install (e.g. no
vendor
dir at all) and the subsequent ones.Double composer update/install for build is not necessary.
Use Git for applying patches
By default the library will try to use the patch
command if not available and fall back to git
otherwise.
You can force using git for each patch (see: Usage Documentation).
There were some problems using git apply
reported in other plugins for packages that were not installed
as source (did not have a git repo; .git
dir). I was not able to reproduce this problem with git 2.X - however -
a workaround for this potential problem has been implemented:
- If the target package has `.git` directory, then the patches are applied relative to target package root
- If no git repo in target package then patches are applied from root project directory
Chicken or egg problem
Patching via composer plugin has one big problem - you cannot catch all events on the first install. Furthermore applying patches on package install/remove is very error prone as you can never predict conflicts with other plugins. Therefor gathering and applying patches before everything was actually installed carries the risk of producing invalid state at the end. This plugin takes a different approach - it performs all actions at once, after the installation/update was performed, just before autoload dump (in case patching changes it).
This guarantees a consistent state as the plugin compares the current state with the desired one and peforms only the actions necessary to get there.
This has one drawback, if your project uses any composer plugins that copy files from vendors to the root of your project then you should patch the root package because the patch applications will happen after those plugins have done their work so patching source files in vendor will have no effect.
Why no remote patches
This plugin will not download patches from external sources directly (http). I consider this a bad practice and will never support it. I won't even comment on downloading patches using unencrypted connection without SHA check. Also what if somebody wants to use your software in 2 years and the patches are no longer available?
Also you will not be able to specify patches in any composer package. You have to use a dedicated packages for this purpose. I can hardly imagine a legit use case when it would be desirable that installing package X will automatically patch some other package Y in your project without explicitly being advertised as a patchset.