From 123d0aaebb6fe8372ddda847e19785bb095b6a71 Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Thu, 14 Nov 2024 20:28:32 +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 38ebe041..36dbfe85 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -53,7 +53,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, mbstring, openssl, pcre, spl, xml coverage: none @@ -89,11 +89,11 @@ jobs: - name: PHPStan run: | - phpstan analyze -c phpstan.neon + vendor/bin/phpstan analyze -c phpstan.neon - name: PHPStan (testsuite) run: | - phpstan analyze -c phpstan-dev.neon + vendor/bin/phpstan analyze -c phpstan-dev.neon security: name: Security checks