diff options
author | Remi Collet <remi@remirepo.net> | 2023-06-12 08:01:34 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-06-12 08:01:34 +0200 |
commit | 8b9b0c0be6b37c4cd9117adbaf4db65ed730ac4c (patch) | |
tree | d93db72055f943f2328e5c2bd06327f02284f729 /composer.json | |
parent | 4ee27eadf8902fdfeda0816dd2e3f2e18f78813b (diff) |
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/composer.json b/composer.json index 0e0cf2d..03c3387 100644 --- a/composer.json +++ b/composer.json @@ -37,9 +37,12 @@ } }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.9", - "phpstan/phpstan": "^1.8", - "phpunit/phpunit" : "^9.0" + "friendsofphp/php-cs-fixer": "^3.17", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpstan/phpstan-strict-rules": "^1.5", + "phpstan/extension-installer": "^1.3", + "phpunit/phpunit" : "^9.6" }, "scripts": { "phpstan": [ @@ -56,5 +59,10 @@ "composer cs-fixer", "composer phpunit" ] + }, + "config": { + "allow-plugins": { + "phpstan/extension-installer": true + } } } |