rajeshreeputra/composer-dynamic-patches
Composer 安装命令:
composer require rajeshreeputra/composer-dynamic-patches
包简介
Provides a way to patch Composer packages dynamically.
README 文档
README
This plugin allows you to provide patches for any package from any package.
If you don't want a patch package outside the root package, consider providing it as package in the repositories key
Provide patches by package only
{
"name": "rajeshreeputra/package",
"type": "metapackage",
"require": {
"vendor/package-patches": "~1.0"
},
"extra": {
"patches": {
"vendor/package-patches": [
{
"This is patch 1": "url/to/file1.patch",
"This is patch 2": "url/to/file2.patch"
}
]
}
}
}
Provide patches by package and versions or version constraints
You may provide patches per package and optionally by version constraints:
composer.json:
{
"name": "rajeshreeputra/package",
"type": "metapackage",
"require": {
"vendor/package-patches": "~1.0"
},
"extra": {
"patches": {
"vendor/package-patches": {
"1.0.0": {
"This is patch 1.0.0 - 1": "url/to/file1.patch",
"This is patch 1.0.0 - 2": "url/to/file2.patch"
},
"1.0.5": {
"This is patch 1.0.5 - 1": "url/to/file1.patch",
"This is patch 1.0.5 - 2": "url/to/file2.patch"
},
"1.1.2": {
"This is patch 1.1.2 - 1": "url/to/file1.patch",
"This is patch 1.1.2 - 2": "url/to/file2.patch"
}
"1.1.*": {
"This is patch 1.1.* - 1": "url/to/file1.patch",
"This is patch 1.1.* - 2": "url/to/file2.patch"
}
}
}
}
}
Note: When multiple version constraints match the version of the target package, all of the matching patches will be applied (canonicalized by theyr checksums, so no duplicates should occure).
Provide patches from URLs or paths
You can put any part of the patches object into another JSON and load it via an URL (or a path):
{
"name": "rajeshreeputra/package",
"type": "project",
"require": {
"vendor/package-patches": "~1.0"
},
"extra": {
"patches-file": "url/to/file/patch.json"
}
}
http://url/to/file/patches.json
{
"vendor/package-patches": {
"1.0.0": {
"This is patch 1.0.0 - 1": "url/to/file1.patch",
"This is patch 1.0.0 - 2": "url/to/file2.patch"
},
"1.0.5": {
"This is patch 1.0.5 - 1": "url/to/file1.patch",
"This is patch 1.0.5 - 2": "url/to/file2.patch"
},
"1.1.2": {
"This is patch 1.1.2 - 1": "url/to/file1.patch",
"This is patch 1.1.2 - 2": "url/to/file2.patch"
}
"1.1.*": {
"This is patch 1.1.* - 1": "url/to/file1.patch",
"This is patch 1.1.* - 2": "url/to/file2.patch"
}
}
}
Provide patches from local stored files
You can use absolute paths or paths relative to the application root.
composer.json:
{
"name": "rajeshreeputra/package",
"type": "project",
"require": {
"vendor/package-patches": "~1.0"
},
"extra": {
"patches": {
"vendor/package-patches": {
"This is local patch": "./patches/file.patch"
}
}
}
}
I have also added a new folder at the same level as the composer.json called "patches" and add a patch file file.json like:
# This patch file was generated by NetBeans IDE
# It uses platform neutral UTF-8 encoding and \n newlines.
--- a/src/SomeFile.php
+++ b/src/SomeFile.php
@@ -6,7 +6,7 @@
{
// apply patch to
// next line
- // This is old line
+ // This is new line
// some text
// some text
// some text
Note that the patch will be called with the option -p1 (remove the first slash) and in the directory of the library.
Then run the commands to update the dependency and to install patches:
composer update vendor/package-patches
composer prl
composer prp
rajeshreeputra/composer-dynamic-patches 适用场景与选型建议
rajeshreeputra/composer-dynamic-patches 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 1, 最近一次更新时间为 2024 年 02 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 rajeshreeputra/composer-dynamic-patches 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rajeshreeputra/composer-dynamic-patches 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2024-02-26