diff options
author | Remi Collet <remi@remirepo.net> | 2020-08-25 14:23:52 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-08-25 14:23:52 +0200 |
commit | d154eebe19e40236fa40493f9dacf0178861384f (patch) | |
tree | b78ad40f1e204611fe0884393c3f381aba2cc3f8 /composer.json | |
parent | b937d2c18d477fc5490181057949a5819be259f5 (diff) |
update to 2.1.0
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/composer.json b/composer.json index 79cfbf1..a88254e 100644 --- a/composer.json +++ b/composer.json @@ -10,11 +10,12 @@ "race condition" ], "require": { - "php": "^7.2" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^8.4.3", - "webimpress/coding-standard": "dev-develop" + "phpunit/phpunit": "^8.5.8 || ^9.3.7", + "vimeo/psalm": "^3.14.2", + "webimpress/coding-standard": "^1.1.5" }, "autoload": { "psr-4": { @@ -31,18 +32,20 @@ }, "extra": { "branch-alias": { - "dev-master": "2.0.x-dev", - "dev-develop": "2.1.x-dev", + "dev-master": "2.1.x-dev", + "dev-develop": "2.2.x-dev", "dev-release-1.0": "1.0.x-dev" } }, "scripts": { "check": [ "@cs-check", - "@test" + "@test", + "@static-analysis" ], "cs-check": "phpcs", "cs-fix": "phpcbf", + "static-analysis": "psalm --shepherd --stats", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" } |