Skip to content

Update phpstan/phpstan requirement from ^1.9 to ^1.11 #517

Update phpstan/phpstan requirement from ^1.9 to ^1.11

Update phpstan/phpstan requirement from ^1.9 to ^1.11 #517

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
phpstan:
name: phpstan static code analysis
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
#- os: ubuntu-18.04
# php-version: '7.2'
- os: ubuntu-latest
php-version: '7.4'
- os: ubuntu-latest
php-version: '8.0'
- os: ubuntu-latest
php-version: '8.1'
- os: ubuntu-latest
php-version: '8.2'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: gd, intl, pdo_mysql
coverage: none # disable xdebug, pcov
- name: Composer install
uses: ramsey/composer-install@v3
with:
composer-options: '--ansi --prefer-dist'
- name: Run phpstan analysis
run: vendor/bin/phpstan analyse --ansi