Skip to content

Drop support for PHP < 7.4 and add support for Symfony 7.0 #1

Drop support for PHP < 7.4 and add support for Symfony 7.0

Drop support for PHP < 7.4 and add support for Symfony 7.0 #1

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions:
- 7.4
- 8.0
- 8.1
- 8.2
- 8.3
name: PHP ${{ matrix.php-versions }} test
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
- name: Install dependencies
run: composer install --prefer-dist --dev
- run: phpunit