We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bad78b5 commit 5d1bddbCopy full SHA for 5d1bddb
.github/workflows/static-analysis.yaml
@@ -22,7 +22,7 @@ jobs:
22
- name: Setup PHP
23
uses: shivammathur/setup-php@v2
24
with:
25
- php-version: '8.2'
+ php-version: '8.3'
26
27
- name: Install dependencies
28
uses: ramsey/composer-install@v3
.github/workflows/tests.yaml
@@ -89,6 +89,10 @@ jobs:
89
run: composer require --dev phpunit/phpunit ^9.3.9 --no-update
90
if: matrix.php == '8.0' && matrix.dependencies == 'lowest'
91
92
+ # These dependencies are not used running the tests but can cause deprecation warnings so we remove them before running the tests
93
+ - name: Remove unused dependencies
94
+ run: composer remove vimeo/psalm phpstan/phpstan friendsofphp/php-cs-fixer --dev --no-interaction --no-update
95
+
96
97
98
0 commit comments