Skip to content

Bump ramsey/composer-install from 3 to 4 #139

Bump ramsey/composer-install from 3 to 4

Bump ramsey/composer-install from 3 to 4 #139

Workflow file for this run

name: "Static Analysis"
on:
- "push"
- "pull_request"
jobs:
analysis:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v6"
- name: "Setup PHP Action"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.5"
extensions: "intl, xdebug"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v4"
with:
composer-options: "--prefer-dist --no-progress --no-suggest"
- name: "PHPStan"
run: "vendor/bin/phpstan analyse"