From 3c0d14a63a70cbf22e4b65c4a38035c56e4c6969 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 31 Mar 2022 14:10:35 +0200 Subject: update to 1.8.9 switch to phpunit8 --- composer.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'composer.json') diff --git a/composer.json b/composer.json index b065d7b..33a6e68 100644 --- a/composer.json +++ b/composer.json @@ -15,10 +15,15 @@ "php": "^5.3 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13", + "phpstan/phpstan": "^0.12.59" }, "autoload": { "psr-4": { "Seld\\JsonLint\\": "src/Seld/JsonLint/" } }, - "bin": ["bin/jsonlint"] + "bin": ["bin/jsonlint"], + "scripts": { + "test": "vendor/bin/phpunit", + "phpstan": "vendor/bin/phpstan analyse" + } } -- cgit