Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

composer-dependencies作曲家依赖

Agent Skill

composer-dependencies 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

541

周安装

23

GitHub Stars

16

下载量

190
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:composer-dependencies(作曲家依赖)
来源仓库:https://github.com/krzysztofsurdy/code-virtuoso
仓库路径:skills/composer-dependencies
安装命令:
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill composer-dependencies
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill composer-dependencies

简介

composer-dependencies 提供 Composer 依赖更新维护流程,强调小批量安全更新。

  • 适用于 PHP 项目的依赖管理和漏洞修复场景。
  • 遵循审计→更新→验证→提交的标准化周期,优先处理安全漏洞。
  • 每次只更新一个包或一组逻辑相关包,避免大规模变更风险。
  • 更新前必须查阅 changelog 或 UPGRADE 文件了解破坏性变更。

SKILL.md

Composer Dependencies Update

Dependency updates are maintenance, not features. Do them regularly in small batches rather than rarely in large ones. Every update follows the same cycle: audit, update, verify, commit.

Core Principles

PrincipleMeaning
Changelog firstBefore any major dependency update, search the web for the package's changelog/UPGRADE file or ask the user to provide it -- never guess what changed
Security firstRun composer audit before and after every update -- vulnerabilities take priority over everything
Small batchesUpdate one package or one logical group at a time -- never update everything at once
Lock file is truthAlways commit composer.lock -- production uses composer install, never composer update
Verify before mergingEvery update must pass the full test suite and static analysis before merging
Caret by defaultUse ^ constraints for most dependencies -- it balances stability with receiving fixes

Critical First Step: Read the Changelog

Before updating any dependency to a new major version, you MUST obtain the actual changelog:

  1. Search the web for {package-name} CHANGELOG or {package-name} UPGRADE guide (e.g., doctrine/orm UPGRADE.md github)
  2. Or ask the user to provide the changelog / release notes
  3. Check the package's GitHub repository for CHANGELOG.md, UPGRADE.md, or release notes

This is non-negotiable for major updates. Each package has unique breaking changes that static skill knowledge cannot capture. For patch and minor updates, changelogs are recommended but not blocking.


Update Strategies by Risk Level

StrategyScopeRiskFrequencyCommand
Patch onlyBug fixes (1.2.3 -> 1.2.4)LowestWeeklycomposer update --patch-only
MinorNew features, backward-compatible (1.2 -> 1.3)LowBiweeklycomposer update --minor-only
MajorBreaking changes possible (1.x -> 2.0)HighestPlanned, one at a timecomposer update vendor/package --with-all-dependencies
SecurityVulnerability fixesUrgentImmediatelycomposer audit then targeted update

Essential Commands

CommandPurpose
composer outdated --directShow outdated direct dependencies (skip transitive)
composer outdated --major-onlyShow only packages with major updates available
composer outdated --minor-onlyShow only packages with minor updates available
composer auditCheck locked versions against known security advisories
composer why vendor/packageShow which packages depend on a given dependency
composer why-not vendor/package 2.0Show what prevents upgrading to a specific version
composer update vendor/package --with-all-dependenciesUpdate a package and all its dependents
composer bumpRaise lower bounds in composer.json to currently installed versions (apps only)
composer validate --strictValidate composer.json structure and constraints

Security Auditing

composer audit

Built into Composer since 2.4. Compares locked versions against GitHub Security Advisories and FriendsOfPHP databases.

# Check for known vulnerabilities
composer audit

# JSON output for CI parsing
composer audit --format=json

Returns non-zero exit code when vulnerabilities are found -- use as a CI gate.

Since Composer 2.9 (November 2025), composer update and composer require automatically block installation of packages with known security advisories by default.

roave/security-advisories

Preventive complement to composer audit. Declares conflict rules against all known vulnerable versions, preventing them from being installed.

composer require --dev roave/security-advisories:dev-latest

Must always be pinned to dev-latest (never a tagged version).

Quick check: composer update --dry-run roave/security-advisories

See Update Workflow Reference for the complete step-by-step update process.


Version Constraints

OperatorExampleRangeUse Case
^ (caret)^1.2.3>=1.2.3 <2.0.0Default for most dependencies
~ (tilde)~1.2.3>=1.2.3 <1.3.0Conservative -- patch updates only
~ (minor)~1.2>=1.2.0 <2.0.0Same as ^1.2 in practice
Exact1.2.3Only 1.2.3Avoid except for known regressions
* (wildcard)1.2.*>=1.2.0 <1.3.0Avoid in production

Pre-1.0 packages: The caret respects semver for unstable packages: ^0.3 means >=0.3.0 <0.4.0, and ^0.0.3 means >=0.0.3 <0.0.4.


Lock File Management

RuleReason
Always commit composer.lock for applicationsEnsures identical versions across all environments
Use composer install in CI and productionReads from lock file, guarantees reproducible builds
Use composer update only intentionallyResolves constraints anew, writes new lock file
Never edit composer.lock manuallyLet Composer manage it
Use --no-dev in productionExclude development dependencies
Use --optimize-autoloader in productionGenerate optimized class map

Production install command:

composer install --no-dev --optimize-autoloader --no-interaction

Abandoned Packages

Composer warns about abandoned packages during install/update. Handle them proactively:

  1. Check the warning -- some suggest a replacement package directly
  2. Search Packagist for maintained alternatives
  3. Use composer why vendor/package to understand who depends on it
  4. Wrap risky dependencies behind interfaces (adapter pattern) to make future replacement easier
  5. Use composer-unused to find packages in composer.json that are not actually used in code

Quick Reference: Update Checklist

  • Run composer audit to check for security vulnerabilities
  • Run composer outdated --direct to see what needs updating
  • Create a dedicated branch for the update
  • Update one package or logical group at a time
  • Run full test suite after each update
  • Run static analysis (PHPStan/Psalm)
  • Run composer audit again post-update
  • Commit both composer.json and composer.lock
  • Optionally run composer bump to raise lower bounds (apps only)
  • Deploy via composer install --no-dev --optimize-autoloader
  • Monitor application behavior after deployment

Reference Files

ReferenceContents
Update WorkflowStep-by-step update process, CI integration with Dependabot/Renovate, major update handling, and troubleshooting
Dependency StrategiesVersioning strategies, constraint selection, automated update tools configuration, and abandoned package handling

Integration with Other Skills

SituationRecommended Skill
Upgrading PHP version (may require dependency updates)Use the php-upgrade playbook skill
Upgrading Symfony frameworkUse the symfony-upgrade skill in frameworks/symfony/
Detecting N+1 query issues after ORM updatesUse the detect-n-plus-one skill

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.31%
按下载量换算71

Claude

28.85%
按下载量换算55

Cursor

17.72%
按下载量换算34

Gemini CLI

10%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills