diff options
author | Remi Collet <remi@remirepo.net> | 2025-04-08 10:32:30 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-04-08 10:32:30 +0200 |
commit | fb4039825eddffbbdc9e8240b2d8102e266c9b7c (patch) | |
tree | 2a7cdc7c4de0f43df8efd1b1843b54bfcf389228 /composer.json | |
parent | da544da922d5a59893460c3b746555868742eae6 (diff) |
switch to phpunit12
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/composer.json b/composer.json index a7a51e3..91ba9e6 100644 --- a/composer.json +++ b/composer.json @@ -8,12 +8,15 @@ "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "1.4.10 || 2.0.3", + "doctrine/coding-standard": "^9 || ^12 || ^13", + "phpstan/phpstan": "1.4.10 || 2.1.11", "phpstan/phpstan-phpunit": "^1.0 || ^2", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12", "psr/log": "^1 || ^2 || ^3" }, + "conflict": { + "phpunit/phpunit": "<=7.5 || >=13" + }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" }, |