Skip to content

Made library compatible with PHP 8.4 #82

Made library compatible with PHP 8.4

Made library compatible with PHP 8.4 #82

Workflow file for this run

name: PHPStan
on:
- push
- fork
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
name: "Check PHPStan"
steps:
- uses: actions/checkout@v2
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
tools: composer:v2
- run: composer install --ignore-platform-req=php
shell: bash
- run: composer phpstan
shell: bash