From 40bad6073bedd1740042f0aa2e81a28baa1c6caf Mon Sep 17 00:00:00 2001 From: Ben Selby Date: Sat, 3 Feb 2024 10:59:43 +0000 Subject: [PATCH] Define the composer dependabot configuration --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ce1d47b..991eaf8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,3 +1,4 @@ +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file version: 2 updates: # Maintain dependencies for GitHub Actions @@ -45,3 +46,16 @@ updates: groups: development-dependencies: dependency-type: 'development' + + # Maintain dependencies for PHP + - package-ecosystem: 'composer' + directory: '/' + schedule: + interval: 'weekly' + commit-message: + prefix: 'php' + groups: + development-dependencies: + dependency-type: 'development' + production-dependencies: + dependency-type: 'production'