From 5bdbc495c3cae3f2a1793338ce7d214932e62c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bar=C3=A1=C5=A1ek?= Date: Wed, 7 Sep 2022 13:20:30 +0200 Subject: [PATCH 1/2] Update ymfonycorp/security-checker-action to V3. Rel. https://github.com/symfonycorp/security-checker-action/issues/6 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7523410..d7e1239 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: composer install --no-interaction --prefer-dist - name: The PHP Security Checker - uses: symfonycorp/security-checker-action@v2 + uses: symfonycorp/security-checker-action@v3 - name: Check PHPStan rules run: composer phpstan From f383e9e39e93a5a5125bc696db34628b1a6583d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bar=C3=A1=C5=A1ek?= Date: Thu, 8 Sep 2022 15:37:00 +0200 Subject: [PATCH 2/2] Composer: Register phpstan/extension-installer to allow-plugin --- composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 735096a..0d69fc5 100644 --- a/composer.json +++ b/composer.json @@ -31,5 +31,10 @@ "vendor/bin/phpstan analyse src -c phpstan.neon --level 8 --no-progress" ] }, - "minimum-stability": "stable" + "minimum-stability": "stable", + "config": { + "allow-plugins": { + "phpstan/extension-installer": true + } + } }