mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02: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:
Oliver Klee 2022-06-28 21:30:42 +02:00 committed by GitHub
parent f6e17b3be0
commit 98884d36fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"