diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 9 |
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" + } } |