From 563b80f404bed1406bda00dd491330318cad436d Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Tue, 19 Nov 2024 11:02:18 +0100 Subject: [PATCH] Fix PHPStan --- .github/workflows/php.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index b6ce915..35daf6c 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -52,7 +52,7 @@ jobs: with: # Should be the higest supported version, so we can use the newest tools php-version: '8.3' - tools: composer, composer-require-checker, composer-unused, phpcs, phpstan + tools: composer, composer-require-checker, composer-unused, phpcs extensions: ctype, date, dom, filter, hash, intl, mbstring, opcache, openssl, pcre, spl, xml - name: Setup problem matchers for PHP @@ -93,11 +93,11 @@ jobs: - name: PHPStan run: | - phpstan analyze -c phpstan.neon --debug + vendor/bin/phpstan analyze -c phpstan.neon --debug - name: PHPStan (testsuite) run: | - phpstan analyze -c phpstan-dev.neon --debug + vendor/bin/phpstan analyze -c phpstan-dev.neon --debug security: name: Security checks