Skip to content

Add #[\ReturnTypeWillChange] to session handler overrides (PHP 8.1+ d… #13

Add #[\ReturnTypeWillChange] to session handler overrides (PHP 8.1+ d…

Add #[\ReturnTypeWillChange] to session handler overrides (PHP 8.1+ d… #13

Workflow file for this run

name: Tests
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
name: PHP ${{ matrix.php-version }}
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: gettext, openssl, mbstring
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: vendor/bin/phpunit --exclude-group=database