symplify/vendor-patches
最新稳定版本:12.0.1
Composer 安装命令:
composer require symplify/vendor-patches
包简介
Generate vendor patches for packages with single command
README 文档
README
Generate vendor patches for packages with single command.
Install
composer require symplify/vendor-patches --dev
# If you are applying patches to production, be sure to also explicitly add cweagans/composer-patches.
composer require cweagans/composer-patches
Usage
How to create a patch for a file in /vendor?
1. Create a Copy of /vendor file you Want To Change with *.old Suffix
For example, if you edit:
vendor/nette/di/src/DI/Extensions/InjectExtension.php
# copy of the file
vendor/nette/di/src/DI/Extensions/InjectExtension.php.old
2. Open the original file and change the lines you need:
if (DI\Helpers::parseAnnotation($rp, 'inject') !== null) {
- if ($type = DI\Helpers::parseAnnotation($rp, 'var')) {
+ if ($type = \App\Reflection\Helper\StaticReflectionHelper::getPropertyType($rp)) {
+ } elseif ($type = DI\Helpers::parseAnnotation($rp, 'var')) {
$type = Reflection::expandClassName($type, Reflection::getPropertyDeclaringClass($rp));
Only *.php file is loaded, not the *.php.old one. This way you can be sure the new code is working before you generate patches.
3. Run generate command ????️
vendor/bin/vendor-patches generate
This tool will generate patch files for all files created this way in /patches directory:
/patches/nette-di-di-extensions-injectextension.php.patch
The patch path is based on original file path, so the patch name is always unique.
Also, it will add configuration for cweagans/composer-patches to your composer.json:
{
"extra": {
"patches": {
"nette/di": [
"patches/nette_di_di_extensions_injectextension.patch"
]
}
}
}
Optionally, if you use a patches file you can specify its path using the --patches-file option:
vendor/bin/vendor-patches generate --patches-file=patches.json
You can choose to write the patches to a different folder than the default 'patches' folder by specifying the folder name using the --patches-folder option:
vendor/bin/vendor-patches generate --patches-folder=patches-composer
That's it!
Now all you need to do is run composer:
composer install
And your patches are applied to your code!
If not, get more information from composer to find out why:
composer install --verbose
TroubleShooting
If you are on macOS, and got hang on applying patch, you may need to install gpatch, you can install with:
brew install gpatch
and register to .bash_profile or .zshrc (if you're using oh-my-zsh):
PATH="/opt/homebrew/opt/gpatch/libexec/gnubin:$PATH"
统计信息
- 总下载量: 6.03M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 180
- 点击次数: 1
- 依赖项目数: 49
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04