From 1e8b157c83ed3da4e6aa46c118f8a98e4ec7732c Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Wed, 4 Dec 2019 10:23:40 +0000 Subject: [PATCH 1/3] Update tools --- resources/tools.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/tools.json b/resources/tools.json index f26a49bf..d1d72e99 100644 --- a/resources/tools.json +++ b/resources/tools.json @@ -120,11 +120,11 @@ "website": "https://infection.github.io/", "command": { "file-download": { - "url": "https://github.com/infection/infection/releases/download/0.14.3/infection.phar.asc", + "url": "https://github.com/infection/infection/releases/download/0.15.0/infection.phar.asc", "file": "%target-dir%/infection.phar.asc" }, "phar-download": { - "phar": "https://github.com/infection/infection/releases/download/0.14.3/infection.phar", + "phar": "https://github.com/infection/infection/releases/download/0.15.0/infection.phar", "bin": "%target-dir%/infection" } }, @@ -634,11 +634,11 @@ "website": "https://psalm.dev/", "command": { "file-download": { - "url": "https://github.com/vimeo/psalm/releases/download/3.6.6/psalm.phar.asc", + "url": "https://github.com/vimeo/psalm/releases/download/3.7.2/psalm.phar.asc", "file": "%target-dir%/psalm.phar.asc" }, "phar-download": { - "phar": "https://github.com/vimeo/psalm/releases/download/3.6.6/psalm.phar", + "phar": "https://github.com/vimeo/psalm/releases/download/3.7.2/psalm.phar", "bin": "%target-dir%/psalm" } }, From 7488fb72610a741ae9d2647f8c0c36af32377063 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Thu, 5 Dec 2019 09:26:16 +0000 Subject: [PATCH 2/3] Use the dev version of phpstan-rules until a stable release is made --- resources/tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/tools.json b/resources/tools.json index d1d72e99..fce1e872 100644 --- a/resources/tools.json +++ b/resources/tools.json @@ -513,7 +513,7 @@ "website": "https://github.com/localheinz/phpstan-rules", "command": { "composer-bin-plugin": { - "package": "localheinz/phpstan-rules", + "package": "localheinz/phpstan-rules:dev-master", "namespace": "phpstan" } }, From 20d642b887dbcc101f24d4d6193bb1690417a0ef Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Thu, 5 Dec 2019 09:32:01 +0000 Subject: [PATCH 3/3] Exclude phpstan-rules on php 7.1 --- resources/tools.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/tools.json b/resources/tools.json index fce1e872..5e5e81e5 100644 --- a/resources/tools.json +++ b/resources/tools.json @@ -517,7 +517,8 @@ "namespace": "phpstan" } }, - "test": "composer global bin phpstan show localheinz/phpstan-rules" + "test": "composer global bin phpstan show localheinz/phpstan-rules", + "tags": ["exclude-php:7.1"] }, { "name": "phpstan-strict-rules",