summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2022-03-31 14:10:35 +0200
committerRemi Collet <remi@php.net>2022-03-31 14:10:35 +0200
commit3c0d14a63a70cbf22e4b65c4a38035c56e4c6969 (patch)
treefec7d6d15d68172754a445fe61532455d90246be /composer.json
parent562b82ccb751eacdec14226292757a1a2bc340b3 (diff)
update to 1.8.9
switch to phpunit8
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json9
1 files changed, 7 insertions, 2 deletions
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"
+ }
}