liborm85/composer-vendor-cleaner
Composer 安装命令:
composer require liborm85/composer-vendor-cleaner
包简介
Composer Vendor Cleaner removes unnecessary development files and directories from vendor directory.
README 文档
README
This composer plugin removes unnecessary development files and directories from vendor directory.
Installation
Local installation to project:
composer require liborm85/composer-vendor-cleaner
Global installation:
composer global require liborm85/composer-vendor-cleaner
Requirements
- PHP 5.6.0+
Configuration
Development files and directories to remove can be defined in composer.json file
in extra data attribute per new key dev-files.
Glob pattern syntax is fully supported.
Example:
"extra": {
"dev-files": {
"/": [ // means: find in all library packages directories and bin directory
"tests/", // means: tests directory whatever
"docs/",
".travis.yml" // means: .travis.yml file whatever
],
"*/*": [ // means: find in all library packages directories, but NOT in bin directory
"*.sh"
],
"bin": [ // means: find in composer bin directory
"*.bat"
],
"twig/twig": [ // means: find only in twig/twig package directory
"doc/",
"/drupal_test.sh" // means: only file in root directory of twig/twig package
],
"symfony/*": [ // means: find in all symfony packages
"Tests/"
],
"other/package": [
"/src/**/*.md" // means: find whatever all md files in src directory, eg.: /src/dir1/test.md, /src/dir1/dir2/readme.md
],
"example/package": [ // means: remove all files and directories in language directory without cs.php file
"languages/*",
"!languages/cs.php" // means: exclude cs.php file from remove
]
}
}
Development files and directories can also be defined in an external json file, by specifying the relative path to
this file in the dev-files key in the root composer.json. The format is the same as above.
"extra": {
"dev-files": "composer.dev-files.json"
}
Example of composer.dev-files.json file:
{
"/": [
".github/"
],
"twig/twig": [
"doc/"
]
}
For additional configuration can be used config attribute.
match-case(default:true) - Match case of name files and directories.remove-empty-dirs(default:true) - Removes empty directories.no-dev-only(default:false) - If is settruestart the cleanup only if the composer command is run with--no-dev.
Example:
"config": {
"dev-files": {
"match-case": false,
"remove-empty-dirs": false
}
}
Why a new plugin?
Some composer packages contain files and directories that do not belong to production servers, but composer does not solve this.
Exists a lot of plugins for composer trying to solve this issue, they don't have advanced patterns to filtering or they are not user definable. Or some have no configuration and it works automatically and delete almost everything and then the package does not work.
That's why I created a new one that allows advanced filtering by glob patterns.
If you miss a feature or find bug, please, create an issue.
License
MIT
liborm85/composer-vendor-cleaner 适用场景与选型建议
liborm85/composer-vendor-cleaner 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 404.72k 次下载、GitHub Stars 达 35, 最近一次更新时间为 2019 年 10 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「composer」 「delete」 「cleanup」 「remove」 「composer-plugin」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 liborm85/composer-vendor-cleaner 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 liborm85/composer-vendor-cleaner 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 liborm85/composer-vendor-cleaner 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
SoftDelete plugin for CakePHP
Laravel console command for deleting temp files and associated model instances.
This composer plugin enables installation of GravityForms WordPress plugin and its addons.
Simple ASCII output of array data
Laravel 5.* package for quick developer protection functions
统计信息
- 总下载量: 404.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 35
- 点击次数: 23
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-10-26