From 63d6ef1a4759378ea00131eaa31443a2c4970261 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Fri, 19 Jun 2026 05:47:08 +0200 Subject: [PATCH] .github: Set up Dependabot This will make GitHub check dependencies in `composer.json` once a week and open PRs trying to bump each of them whenever a new version is released. If the CI fails, as is likely the case with PHP-CS-Fixer, we will need to fix is manually before the PR can be merged. https://docs.github.com/en/code-security/tutorials/secure-your-dependencies/dependabot-quickstart --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e9d271d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "composer" + directory: "/" + schedule: + interval: "weekly"