diff options
author | Remi Collet <remi@remirepo.net> | 2024-07-25 14:40:50 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-07-25 14:40:50 +0200 |
commit | 1023c83440a4b835d707685f5adb9884f6447b07 (patch) | |
tree | fd6c9d0505b7d9228ea4fe8fc98fd7b91fc7f915 /composer.json | |
parent | 9df79e5c7a7a33352c7ecbf7cc1ba9faa3def717 (diff) |
update to 3.2.0
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/composer.json b/composer.json index 40477ff..9e827a9 100644 --- a/composer.json +++ b/composer.json @@ -20,10 +20,13 @@ "php": "^7.4 || ^8.0" }, "require-dev": { - "symfony/phpunit-bridge": "^5", - "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^8 || ^9", + "phpstan/phpstan": "^1.11.8", "phpstan/phpstan-strict-rules": "^1.1" }, + "conflict": { + "phpstan/phpstan": "<1.11.8" + }, "autoload": { "psr-4": { "Composer\\Pcre\\": "src" @@ -37,10 +40,15 @@ "extra": { "branch-alias": { "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] } }, "scripts": { - "test": "vendor/bin/simple-phpunit", - "phpstan": "phpstan analyse" + "test": "@php vendor/bin/phpunit", + "phpstan": "@php phpstan analyse" } } |