diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-30 16:13:16 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2022-05-24 18:54:29 +0200 |
commit | 8951f069fef6916bd293d278c2491b82bc349fc1 (patch) | |
tree | d452f49ff9b08b2797d244bb5634f28f7b6d14d5 /build/integration/composer.json | |
parent | 53577ab34ae3e59b62fb57d35112b8f8d49d6de3 (diff) | |
download | nextcloud-server-8951f069fef6916bd293d278c2491b82bc349fc1.tar.gz nextcloud-server-8951f069fef6916bd293d278c2491b82bc349fc1.zip |
Require a recent phpunit version in integration and acceptance
Otherwise build with PHP>8 will fail as PHPUnit 6 does not support it
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'build/integration/composer.json')
-rw-r--r-- | build/integration/composer.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/integration/composer.json b/build/integration/composer.json index 0ab212b3cdf..a9ba7980064 100644 --- a/build/integration/composer.json +++ b/build/integration/composer.json @@ -1,6 +1,7 @@ { "require-dev": { - "phpunit/phpunit": "~6.5", + "phpunit/phpunit": "^9", + "dms/phpunit-arraysubset-asserts": "^0.4", "behat/behat": "~3.10.0", "guzzlehttp/guzzle": "7.4.2", "jarnaiz/behat-junit-formatter": "^1.3", |