From 811a871a4077d974b785113da350ca7d9695f58f Mon Sep 17 00:00:00 2001 From: "Michael A. Smith" Date: Tue, 12 May 2026 16:28:50 -0400 Subject: [PATCH] ci(deps): ignore symfony 8 until openemr moves OpenEMR currently pins symfony/* at ^7.3 in its root composer.json. Bumping the module's symfony/* requirement to ^8.x makes the module fail to install into a real OpenEMR site. Ignore Symfony >=8 in Dependabot until upstream openemr/openemr widens its constraint. Assisted-by: Claude Code --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f77dd0b..8f2d24a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,6 +14,11 @@ updates: commit-message: prefix: deps include: scope + ignore: + # OpenEMR pins symfony/* at ^7.3; ignore Symfony 8 until upstream moves. + - dependency-name: symfony/* + versions: + - '>=8.0' # Monitor GitHub Actions - package-ecosystem: github-actions