diff --git a/lib/config/presets/internal/group.ts b/lib/config/presets/internal/group.ts index 8aaa71fcd3..d8397e8b2a 100644 --- a/lib/config/presets/internal/group.ts +++ b/lib/config/presets/internal/group.ts @@ -63,6 +63,7 @@ const staticGroups = { 'group:jekyllEcosystem', 'group:jestPlusTSJest', 'group:jestPlusTypes', + 'group:jwtFramework', 'group:kubernetes', 'group:phpstan', 'group:polymer', @@ -684,6 +685,16 @@ const staticGroups = { }, ], }, + jwtFramework: { + description: 'Group JWT Framework packages together.', + packageRules: [ + { + matchDatasources: ['packagist'], + matchPackagePrefixes: ['web-token/'], + groupName: 'JWT Framework packages', + }, + ], + }, }; const config: any = { ...staticGroups };