mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:56:12 +01:00
[BUGFIX] Block Dependabot from breaking upgrades (#469)
composer-noramlize >= 2.2.0 will conflicts with our supported PHP version range, as does PHPUnit 9.x (and 10.x will too). So we need to configure Dependabot to stay below these breaking versions. Fixes #467
This commit is contained in:
parent
f6e17b3be0
commit
98884d36fa
1 changed files with 4 additions and 0 deletions
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
|
@ -15,6 +15,10 @@ updates:
|
|||
allow:
|
||||
- dependency-type: "development"
|
||||
ignore:
|
||||
- dependency-name: "ergebnis/composer-normalize"
|
||||
versions: [ "^2.20" ]
|
||||
- dependency-name: "phpunit/phpunit"
|
||||
versions: [ "^9.0", "^10.0" ]
|
||||
- dependency-name: "symfony/yaml"
|
||||
- dependency-name: "typo3/cms-*"
|
||||
versioning-strategy: "increase"
|
||||
|
|
Loading…
Reference in a new issue